Skip to content

Commit

Permalink
Update: Routes
Browse files Browse the repository at this point in the history
  • Loading branch information
sonah5009 committed Mar 4, 2023
1 parent ce579ec commit e707ff4
Show file tree
Hide file tree
Showing 18 changed files with 29 additions and 4 deletions.
15 changes: 12 additions & 3 deletions mav-app/src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
import logo from './logo.svg';
import './App.css';
import Header from './components/Header';
import { Route, Routes } from "react-router-dom"

function App() {
return (
<div>
<Header></Header>
</div>
<>
<Header />
<div className="container">
<Routes>
<Route path="/" element={<Home />} />
<Route path="/members" element={<Members />} />
<Route path="/activities" element={<Activities />} />
<Route path="/recruiment" element={<Recruiment />} />
</Routes>
</div>
</>
);
}

Expand Down
Binary file added mav-app/src/assets/images/choesuna.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/github-mark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/hsy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/lyh.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/main-page.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/mav_img_length.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/images/mav_img_width.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mav-app/src/assets/videos/mav_ani.mp4
Binary file not shown.
Binary file added mav-app/src/assets/videos/mav_anime.mp4
Binary file not shown.
Binary file added mav-app/src/assets/videos/mav_anime2.mp4
Binary file not shown.
Binary file added mav-app/src/assets/videos/mav_anime2_length.mp4
Binary file not shown.
4 changes: 3 additions & 1 deletion mav-app/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
{/* <BrowserRouter> */}
<App />
{/* </BrowserRouter> */}
</React.StrictMode>
);

Expand Down
14 changes: 14 additions & 0 deletions mav-app/src/pages/Activities.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const Activites = () => {
return (
<div>
<div className="subtitle">
<span className="color-blue-100">A</span>CTIVITIES
</div>
<p>
성균관대학교 메타버스 스튜디오
</p>
</div>
)
}

export default Activites;
Empty file added mav-app/src/pages/Home.js
Empty file.
Empty file added mav-app/src/pages/Memebers.js
Empty file.
Empty file added mav-app/src/pages/Recruiment.js
Empty file.

0 comments on commit e707ff4

Please sign in to comment.