diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index f517381..3ff767e 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,11 +1,13 @@ import React from 'react'; import { BrowserRouter as Router } from 'react-router-dom'; +import { AppRoutes } from './routes'; import './App.css'; function App() { return (
+

ThonHub

Hackathon Platform - Coming Soon!

diff --git a/frontend/src/routes.js b/frontend/src/routes.js index e69de29..2e2266b 100644 --- a/frontend/src/routes.js +++ b/frontend/src/routes.js @@ -0,0 +1,22 @@ +import {Routes, Route} from 'react-router-dom'; +import Home from './pages/Home'; +import Chat from './pages/Chat'; +import Hackathon from './pages/Hackathon'; +import OrgPanel from './pages/OrgPanel'; +import ProjectNotes from './pages/ProjectNotes'; +import Teammates from './pages/Teammates'; +import Profile from './pages/Profile'; + +export const AppRoutes = () => { + return ( + + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + ); +} \ No newline at end of file