diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 46a5992..246c2b9 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,121 +1,21 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from './assets/vite.svg' -import heroImg from './assets/hero.png' -import './App.css' - -function App() { - const [count, setCount] = useState(0) +import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; +import Home from './pages/Home'; +import Register from './pages/Register'; +import VerifyEmail from './pages/VerifyEmail'; +import Activate from './pages/Activate'; +export default function App() { return ( - <> -
-
- - React logo - Vite logo -
-
-

Get started

-

- Edit src/App.tsx and save to test HMR -

-
- -
- -
- -
-
- -

Documentation

-

Your questions, answered

- -
-
- -

Connect with us

-

Join the Vite community

- -
-
- -
-
- - ) + +
+ + } /> + } /> + } /> + } /> + } /> + +
+
+ ); } - -export default App diff --git a/frontend/src/pages/Activate.tsx b/frontend/src/pages/Activate.tsx new file mode 100644 index 0000000..112c6de --- /dev/null +++ b/frontend/src/pages/Activate.tsx @@ -0,0 +1,7 @@ +export default function Activate() { + return ( +
+

Activate

+
+ ); +} diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx new file mode 100644 index 0000000..0af66a9 --- /dev/null +++ b/frontend/src/pages/Home.tsx @@ -0,0 +1,7 @@ +export default function Home() { + return ( +
+

Pi. Ku.

+
+ ); +} diff --git a/frontend/src/pages/Register.tsx b/frontend/src/pages/Register.tsx new file mode 100644 index 0000000..c2744fe --- /dev/null +++ b/frontend/src/pages/Register.tsx @@ -0,0 +1,7 @@ +export default function Register() { + return ( +
+

Register

+
+ ); +} diff --git a/frontend/src/pages/VerifyEmail.tsx b/frontend/src/pages/VerifyEmail.tsx new file mode 100644 index 0000000..097e58c --- /dev/null +++ b/frontend/src/pages/VerifyEmail.tsx @@ -0,0 +1,7 @@ +export default function VerifyEmail() { + return ( +
+

Verify Email

+
+ ); +}