mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 15:56:56 +00:00
feat: implement registration page with form validation and add custom typography fonts
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
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';
|
||||
import { BrowserRouter, Navigate, Route, Routes } from "react-router-dom";
|
||||
import Activate from "./pages/Activate";
|
||||
import Home from "./pages/Home";
|
||||
import Register from "./pages/Register";
|
||||
import VerifyEmail from "./pages/VerifyEmail";
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
@@ -10,7 +10,7 @@ export default function App() {
|
||||
<div className="min-h-screen bg-base-200 p-8 flex items-center justify-center">
|
||||
<Routes>
|
||||
<Route path="/" element={<Home />} />
|
||||
<Route path="/register" element={<Register />} />
|
||||
<Route path="/onboard" element={<Register />} />
|
||||
<Route path="/verify-email" element={<VerifyEmail />} />
|
||||
<Route path="/activate/:uidb64/:token" element={<Activate />} />
|
||||
<Route path="*" element={<Navigate to="/" replace />} />
|
||||
|
||||
Reference in New Issue
Block a user