Skip to content

Commit

Permalink
Merge pull request #8 from a-romantic-cat/feature/1
Browse files Browse the repository at this point in the history
Feature/1
  • Loading branch information
noeyeyh authored Jan 22, 2024
2 parents f82056e + 850bed8 commit 5b3a3d3
Show file tree
Hide file tree
Showing 20 changed files with 1,926 additions and 16 deletions.
37 changes: 37 additions & 0 deletions front-end/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions front-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@testing-library/user-event": "^13.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.21.2",
"react-scripts": "5.0.1",
"styled-components": "^6.1.8",
Expand Down
27 changes: 27 additions & 0 deletions front-end/public/images/bg_letter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions front-end/public/images/envelope.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions front-end/public/images/검정고양이.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions front-end/public/images/더흰편지지.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions front-end/public/images/레드핀.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions front-end/public/images/양쪽편지지.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions front-end/public/images/우표.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions front-end/public/images/우표2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed front-end/public/images/큰고양이1.png
Binary file not shown.
3 changes: 3 additions & 0 deletions front-end/public/images/핀.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions front-end/public/images/흰편지지.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions front-end/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ import RomanticLetterbox from "./pages/RomanticLetterbox";
import Store from "./pages/Store";
import MyPage from "./pages/MyPage";
import Check1 from './components/MyLetterbox/Check1';
import Check2 from './components/MyLetterbox/Check2';
import Answer1 from './components/MyLetterbox/Answer1';
import Answer2 from './components/MyLetterbox/Answer2';
import Answer3 from './components/MyLetterbox/Answer3';
import Answer4 from './components/MyLetterbox/Answer4';
import OpenLetter1 from './components/MyLetterbox/OpenLetter1';

const Background = styled.div`
Expand All @@ -30,6 +35,11 @@ function App() {
<Route path="/Store" element={<Store />} />
<Route path="/MyPage" element={<MyPage />} />
<Route path="/Check1" element={<Check1 />} />
<Route path="/Check2" element={<Check2 />} />
<Route path="/Answer1" element={<Answer1 />} />
<Route path="/Answer2" element={<Answer2 />} />
<Route path="/Answer3" element={<Answer3 />} />
<Route path="/Answer4" element={<Answer4 />} />
<Route path="/OpenLetter1" element={<OpenLetter1 />} />

</Routes>
Expand Down
Loading

0 comments on commit 5b3a3d3

Please sign in to comment.