File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { AuthProvider, useAuth } from "./context/AuthContext";
55import ProtectedRoutes from "./routes/ProtectedRoutes" ;
66import PublicRoutes from "./routes/PublicRoutes" ;
77import ThemeApplier from "./theme/ThemeApplier" ;
8- import Mainpage from "./pages/Mainpage" ;
98
109function AppRoutes ( ) {
1110 const { user } = useAuth ( ) ;
Original file line number Diff line number Diff line change @@ -594,6 +594,18 @@ function Navbar({ showBack }) {
594594 Home
595595 </ button >
596596
597+ < button
598+ onClick = { ( ) => navigate ( "/signin" ) }
599+ className = "hidden sm:flex px-4 py-2 rounded-xl text-sm font-semibold
600+ border border-[var(--accent)]/50 text-[var(--accent)] glass
601+ hover:border-[var(--accent)] hover:bg-[var(--accent)]/15
602+ hover:shadow-[0_4px_16px_-4px_var(--accent)]
603+ transition-all duration-300 cursor-pointer active:scale-95
604+ items-center gap-2"
605+ >
606+ Sign In
607+ </ button >
608+
597609 < button
598610 onClick = { ( ) => navigate ( "/signup" ) }
599611 className = "px-4 py-2 rounded-xl text-sm font-bold border-none
You can’t perform that action at this time.
0 commit comments