File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -19,21 +19,15 @@ const Navbar = ({ userId }: { userId?: string }) => {
19
19
</ span >
20
20
</ div >
21
21
< div className = "hidden lg:flex space-x-6" >
22
- < Link href = "# " className = "hover:text-purple-400 " >
22
+ < Link href = "/ " className = "hover:text-purple-400 " >
23
23
Home
24
24
</ 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 " >
29
26
How it Works
30
27
</ Link >
31
- < Link href = "# " className = "hover:text-purple-400 " >
28
+ < Link href = "/FAQ " className = "hover:text-purple-400 " >
32
29
FAQs
33
30
</ Link >
34
- < Link href = "#" className = "hover:text-purple-400 " >
35
- Blog
36
- </ Link >
37
31
</ div >
38
32
< div className = "hidden lg:flex items-center space-x-4" >
39
33
{ userId ? (
@@ -42,7 +36,7 @@ const Navbar = ({ userId }: { userId?: string }) => {
42
36
onClick = { ( ) =>
43
37
supabase . auth
44
38
. signOut ( )
45
- . then ( ( ) => router . push ( "/auth/signin " ) )
39
+ . then ( ( ) => router . push ( "/" ) )
46
40
}
47
41
>
48
42
Sign Out
You can’t perform that action at this time.
0 commit comments