@@ -8,9 +8,9 @@ import NotifyModal from "@/components/NotifyModal";
88const navLinks = [
99 { label : "Technology" , href : "/technology" } ,
1010 { label : "Tokenomics" , href : "/tokenomics" } ,
11- { label : "How to Buy" , href : "/how-to-buy" } ,
11+ // { label: "How to Buy", href: "/how-to-buy" },
1212 { label : "Whitepaper" , href : "/whitepaper" } ,
13- { label : "Get Notified" , href : "/notify" } ,
13+ // { label: "Get Notified", href: "/notify" },
1414 { label : "Contact" , href : "/contact" } ,
1515] ;
1616
@@ -45,19 +45,21 @@ const Navbar = () => {
4545
4646 return (
4747 < nav className = "fixed top-0 left-0 right-0 z-50 border-b border-border/50 bg-background/80 backdrop-blur-xl" >
48- < div className = "container mx-auto flex h-16 items-center justify-between px-4 lg:px-8" >
49- { /* Logo */ }
50- < Link to = "/" className = "flex items-center gap-2" >
51- < div className = "flex h-8 w-8 items-center justify-center rounded-md bg-white p-1" >
52- < img src = "/logo.svg" alt = "Zelion Logo" className = "h-full w-full text-silver-light" />
53- </ div >
54- < span className = "font-heading text-lg font-semibold tracking-wider text-foreground" >
55- ZelionTech
56- </ span >
57- </ Link >
48+ < div className = "container mx-auto flex h-16 items-center px-4 lg:px-8" >
49+ < div className = "flex flex-1 items-center" >
50+ { /* Logo */ }
51+ < Link to = "/" className = "flex items-center gap-2" >
52+ < div className = "flex h-8 w-8 items-center justify-center rounded-md bg-white p-1" >
53+ < img src = "/logo.svg" alt = "Zelion Logo" className = "h-full w-full text-silver-light" />
54+ </ div >
55+ < span className = "font-heading text-lg font-semibold tracking-wider text-foreground" >
56+ ZelionTech
57+ </ span >
58+ </ Link >
59+ </ div >
5860
5961 { /* Desktop Links */ }
60- < div className = "hidden items-center gap-1 md:flex" >
62+ < div className = "hidden flex-1 items-center justify -center gap-1 md:flex" >
6163 { navLinks . map ( ( link ) => (
6264 < Link
6365 key = { link . href }
@@ -73,24 +75,26 @@ const Navbar = () => {
7375 ) ) }
7476 </ div >
7577
76- { /* Desktop Actions */ }
77- < div className = "hidden items-center gap-3 md:flex" >
78- < Button onClick = { handleOpenModal } variant = "wallet" size = "sm" >
79- Get Notified
80- </ Button >
81- </ div >
78+ < div className = "flex flex-1 items-center justify-end" >
79+ { /* Desktop Actions */ }
80+ < div className = "hidden items-center gap-3 md:flex" >
81+ { /* <Button onClick={handleOpenModal} variant="wallet" size="sm">
82+ Get Notified
83+ </Button> */ }
84+ </ div >
8285
83- { /* Mobile Menu Toggle */ }
84- < button
85- className = "flex items-center justify-center md:hidden"
86- onClick = { ( ) => setMobileOpen ( ! mobileOpen ) }
87- >
88- { mobileOpen ? (
89- < X className = "h-6 w-6 text-foreground" />
90- ) : (
91- < Menu className = "h-6 w-6 text-foreground" />
92- ) }
93- </ button >
86+ { /* Mobile Menu Toggle */ }
87+ < button
88+ className = "flex items-center justify-center md:hidden"
89+ onClick = { ( ) => setMobileOpen ( ! mobileOpen ) }
90+ >
91+ { mobileOpen ? (
92+ < X className = "h-6 w-6 text-foreground" />
93+ ) : (
94+ < Menu className = "h-6 w-6 text-foreground" />
95+ ) }
96+ </ button >
97+ </ div >
9498 </ div >
9599
96100 { /* Mobile Menu */ }
@@ -118,9 +122,9 @@ const Navbar = () => {
118122 </ Link >
119123 ) ) }
120124 < div className = "mt-4" >
121- < Button onClick = { handleOpenModal } variant = "wallet" className = "w-full" >
125+ { /* <Button onClick={handleOpenModal} variant="wallet" className="w-full">
122126 Get Notified
123- </ Button >
127+ </Button> */ }
124128 </ div >
125129 </ div >
126130 </ motion . div >
0 commit comments