Skip to content

Commit e9d5817

Browse files
fix: update navbar links for correct routing
1 parent b1ea163 commit e9d5817

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

components/header.tsx

+4-10
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,15 @@ const Navbar = ({ userId }: { userId?: string }) => {
1919
</span>
2020
</div>
2121
<div className="hidden lg:flex space-x-6">
22-
<Link href="#" className="hover:text-purple-400 ">
22+
<Link href="/" className="hover:text-purple-400 ">
2323
Home
2424
</Link>
25-
<Link href="#" className="hover:text-purple-400 ">
26-
Features
27-
</Link>
28-
<Link href="#" className="hover:text-purple-400 ">
25+
<Link href="/learn-more" className="hover:text-purple-400 ">
2926
How it Works
3027
</Link>
31-
<Link href="#" className="hover:text-purple-400 ">
28+
<Link href="/FAQ" className="hover:text-purple-400 ">
3229
FAQs
3330
</Link>
34-
<Link href="#" className="hover:text-purple-400 ">
35-
Blog
36-
</Link>
3731
</div>
3832
<div className="hidden lg:flex items-center space-x-4">
3933
{userId ? (
@@ -42,7 +36,7 @@ const Navbar = ({ userId }: { userId?: string }) => {
4236
onClick={() =>
4337
supabase.auth
4438
.signOut()
45-
.then(() => router.push("/auth/signin"))
39+
.then(() => router.push("/"))
4640
}
4741
>
4842
Sign Out

0 commit comments

Comments
 (0)