File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
import { useState , useRef , useEffect } from "react" ;
3
3
import { IoMdClose } from "react-icons/io" ;
4
4
import { GiHamburgerMenu } from "react-icons/gi" ;
5
- import { NAVBAR_LINKS } from "@/app/utils/constants" ;
5
+ import { HOME_PAGE_NAVBAR_LINKS } from "@/app/utils/constants" ;
6
6
import { v4 as uuidv4 } from "uuid" ;
7
7
import Link from "next/link" ;
8
8
import { Zklogin , AccountData } from "@/app/utils/Zklogin" ;
@@ -48,7 +48,7 @@ const Navbar = () => {
48
48
</ Link >
49
49
{ /* large screen size nav links and login button */ }
50
50
< div className = "hidden lg:flex md:gap-10 lg:gap-14" >
51
- { NAVBAR_LINKS . map ( ( { label, link } ) => (
51
+ { HOME_PAGE_NAVBAR_LINKS . map ( ( { label, link } ) => (
52
52
< Link
53
53
key = { uuidv4 ( ) }
54
54
href = { link }
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export const LANDING_PAGE_BUTTON = [
106
106
} ,
107
107
] ;
108
108
109
- export const NAVBAR_LINKS = [
109
+ export const HOME_PAGE_NAVBAR_LINKS = [
110
110
{
111
111
label : "Meet new" ,
112
112
link : "/" ,
You can’t perform that action at this time.
0 commit comments