Skip to content

Commit

Permalink
Merge pull request #1 from Toy2-Team3/KAN-20--feature/layout/navigati…
Browse files Browse the repository at this point in the history
…on-bar

네비게이션 바를 구현한다.
  • Loading branch information
JSH99 authored Nov 8, 2023
2 parents 994fbd0 + 22fe1b1 commit a46bc84
Show file tree
Hide file tree
Showing 25 changed files with 679 additions and 15 deletions.
17 changes: 6 additions & 11 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
## 📌 관련 이슈
<!— 관련있는 이슈 번호(#000)을 적어주세요.
해당 pull request merge와 함께 이슈를 닫으려면
closed #Issue_number를 적어주세요 —>
## 📌 제목
<!— PR에 대한 제목을 적어주세요 —>

## 과제 내용
<!— 과제에 대한 설명을 적어주세요 —>
## 작업 내용
<!— 작업한 내용을 모두 적어주세요 —>

## 📸 스크린샷(선택)
<!— 스크린샷이 필요한 과제면 스크린샷을 첨부해주세요 —>

## 📚 레퍼런스 (또는 새로 알게 된 내용) 혹은 궁금한 사항들
<!— 참고할 사항이 있다면 적어주세요 —>
## ✅ 확인 사항
<!— 다른 팀원들이 확인해야 하는 내용을 적어주세요 —>
87 changes: 87 additions & 0 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"react-scripts": "5.0.1",
"styled-components": "^6.1.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
Expand Down
25 changes: 21 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
import './App.css';
import { ThemeProvider } from 'styled-components';
import theme from '../src/styles/theme';
import { BrowserRouter, Route, Routes } from "react-router-dom";
import NavigationBar from './components/NavigationBar';
import HomePage from './pages/HomePage';
import CommunityPage from './pages/CommunityPage';
import ChatPage from './pages/chatting/index';
import MyPage from './pages/MyPage';

function App() {
return (
<div className="App">
<button>asdfsdas</button>
<input type="text" />
</div>
<ThemeProvider theme={theme}>
<BrowserRouter>
<div className="App" style={{display: 'flex'}}>
<NavigationBar></NavigationBar>
<Routes>
<Route path="/" element={<HomePage/>} />
<Route path="/community" element={<CommunityPage/>} />
<Route path="/chat" element={<ChatPage/>} />
<Route path="/mypage" element={<MyPage/>} />
</Routes>
</div>
</BrowserRouter>
</ThemeProvider>
);
}

Expand Down
3 changes: 3 additions & 0 deletions src/assets/activedChattingIcon.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 src/assets/activedCommunityIcon.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 src/assets/activedHomeIcon.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 src/assets/activedMypageIcon.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 src/assets/activedSettingIcon.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 src/assets/chattingIcon.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 src/assets/communityIcon.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 src/assets/homeIcon.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 src/assets/mypageIcon.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 src/assets/settingIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a46bc84

Please sign in to comment.