Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove: unused images & dummy data #151

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed src/assets/images/beach.png
Binary file not shown.
Binary file removed src/assets/images/beach1.jpeg
Binary file not shown.
Binary file removed src/assets/images/beach2.jpeg
Binary file not shown.
Binary file removed src/assets/images/beach3.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog1.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog2.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog3.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog4.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog5.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog6.jpeg
Binary file not shown.
Binary file removed src/assets/images/dog7.jpeg
Binary file not shown.
Binary file removed src/assets/images/mountain1.jpeg
Binary file not shown.
Binary file removed src/assets/images/mountain2.jpeg
Binary file not shown.
Binary file removed src/assets/images/mountain3.jpeg
Binary file not shown.
Binary file removed src/assets/images/mountain4.jpeg
Binary file not shown.
Binary file removed src/assets/images/mountain5.jpeg
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/common/Button.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "styled-components";
import React, { useState, useEffect } from "react";
import React from "react";
import { COLOR } from "../../styles/color.js";
import { useNavigate } from "react-router-dom";
const CancelButtons = (closeModals) => {
Expand Down
3 changes: 0 additions & 3 deletions src/components/common/RecomListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,11 @@ RecomListItem.propTypes = {
const StRecomListItem = styled.div`
width: 100%;
height: 100%;
/* border: 1px solid black; */
/* padding: 0.1rem; */
`;

const ItemCard = styled(Card)`
width: 14rem;
height: 17rem;
/* border: 1px solid blue; */
`;

const InfoCardContent = styled(CardContent)`
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/SelectDateRange.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState, useEffect } from "react";
import React, { useState } from "react";
import DatePicker from "react-datepicker";
import PropTypes from "prop-types";
import styled from "styled-components";
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/TagImgListItem.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "styled-components";
import React, { useState, useEffect } from "react";
import React from "react";
import PropTypes from "prop-types";
import ListItem from "@mui/material/ListItem";
import { Link } from "react-router-dom";
Expand Down
2 changes: 0 additions & 2 deletions src/components/common/TripList.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import styled from "styled-components";
import List from "@mui/material/List";
import TripListItem from "./TripListItem";
import axios from "axios";
import { useRecoilState } from "recoil";


export default function TripList() {

Expand Down
12 changes: 0 additions & 12 deletions src/data/DiaryInfoData.json

This file was deleted.

20 changes: 0 additions & 20 deletions src/data/FriendData.json

This file was deleted.

71 changes: 0 additions & 71 deletions src/data/TagData.js

This file was deleted.

53 changes: 0 additions & 53 deletions src/data/TripData.json

This file was deleted.

12 changes: 0 additions & 12 deletions src/data/UserData.json

This file was deleted.

1 change: 0 additions & 1 deletion src/pages/DiaryListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Avatar from "@mui/material/Avatar";
import Button from "@mui/material/Button";
import Pencil from "../assets/images/pencil.svg";
import { useNavigate } from "react-router-dom";
import { useLocation } from "react-router";
import FormatListBulletedIcon from "@mui/icons-material/FormatListBulleted";
import BottomNav from "../layout/BottomNav";
import axios from "axios";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/DiaryWritePage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "styled-components";
import { React, useState, useEffect } from "react";
import { React, useState } from "react";
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
import calendar from "../assets/images/calendar.svg";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/EditProfilPage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState, useEffect } from "react";
import React, { useState } from "react";
import styled from "styled-components";
import Avatar from "@mui/material/Avatar";
import { COLOR } from "../styles/color";
Expand Down
Loading