Skip to content

Commit

Permalink
Merge pull request #13 from leslieyip02/KAN-13-Create-Resources-Page
Browse files Browse the repository at this point in the history
KAN-13 Create Resources Page
  • Loading branch information
Respirayson authored Mar 2, 2024
2 parents ff2695a + 3b0b9db commit 501ffc0
Show file tree
Hide file tree
Showing 11 changed files with 405 additions and 2 deletions.
12 changes: 12 additions & 0 deletions public/folder_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions public/planner_icon.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 public/sep_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect } from 'react';
import { useLocation, Routes, Route } from 'react-router-dom';
import { About, Home, Privacy } from './pages';
import { About, Home, Privacy, Resources } from './pages';
import NavigationBar from './layout/NavigationBar';
import Footer from './layout/Footer';
import './App.css';
Expand All @@ -20,6 +20,9 @@ function App() {
<Routes>
<Route path='/about' element={<About />} />
</Routes>
<Routes>
<Route path='/resources' element={<Resources />} />
</Routes>
</main>

<Footer />
Expand Down
3 changes: 2 additions & 1 deletion src/pages/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import About from './about';
import Home from './home';
import Privacy from './privacy';
import Resources from './resources/index';

export { About, Home, Privacy };
export { About, Home, Privacy, Resources };
Loading

0 comments on commit 501ffc0

Please sign in to comment.