@@ -19,11 +19,11 @@ const navLinks = [
1919<Layout >
2020 <nav
2121 id =" default-nav"
22- class =" fixed top-0 left-0 right-0 z-[99999] flex items-center justify-between px-5 py-3 bg-background/90 backdrop-blur-md border-b border-white/10"
22+ class =" fixed top-4 left-4 right-4 z-[99999] flex items-center justify-between px-6 py-3 bg-background/90 backdrop-blur-md border border-white/10 rounded-2xl shadow-lg "
2323 >
2424 <a
2525 href =" /"
26- class =" text-3xl font-bold text-text hover:text-accent transition-colors tracking-tighter "
26+ class =" inline-block text-5xl font-black leading-none text-text hover:-translate-y-0.5 tracking-normal [-webkit-text-stroke:1px_currentColor] "
2727 >
2828 IN
2929 </a >
@@ -33,9 +33,9 @@ const navLinks = [
3333 navLinks .map ((link ) => (
3434 <a
3535 href = { link .href }
36- class = " inline-flex items-center gap-2 rounded px-3 py-1.5 text-sm text-text-secondary hover:text-text hover:bg-white/10 transition-all "
36+ class = " inline-flex items-center gap-2 rounded-md px-4 py-2 text-base text-text-secondary hover:-translate-y-0.5 "
3737 >
38- <link.Icon class = " w-4 h-4 " strokeWidth = { 1.5 } />
38+ <link.Icon class = " w-5 h-5 " strokeWidth = { 1.5 } />
3939 <span >{ link .text } </span >
4040 </a >
4141 ))
@@ -47,30 +47,30 @@ const navLinks = [
4747 class =" p-2 text-text-secondary hover:text-text transition-colors"
4848 aria-label =" Toggle menu"
4949 >
50- <Menu id =" menu-icon" class =" w-6 h-6 transition-transform duration-200" strokeWidth ={ 1.5 } />
51- <X id =" close-icon" class =" w-6 h-6 hidden transition-transform duration-200" strokeWidth ={ 1.5 } />
50+ <Menu id =" menu-icon" class =" w-7 h-7 transition-transform duration-200" strokeWidth ={ 1.5 } />
51+ <X id =" close-icon" class =" w-7 h-7 hidden transition-transform duration-200" strokeWidth ={ 1.5 } />
5252 </button >
5353 </nav >
5454
5555 <div
5656 id =" nav-menu"
57- class =" fixed top-14 right-4 z-[99998] min-w-[180px ] bg-background/95 backdrop-blur-sm border border-white/10 p-2 shadow-2xl origin-top-right transition-all duration-200 ease-out opacity-0 scale-95 pointer-events-none"
57+ class =" fixed top-24 right-4 z-[99998] min-w-[200px ] bg-background/95 backdrop-blur-sm border border-white/10 rounded-2xl p-2 shadow-2xl origin-top-right transition-all duration-200 ease-out opacity-0 scale-95 pointer-events-none"
5858 >
5959 {
6060 navLinks .map ((link , i ) => (
6161 <a
6262 href = { link .href }
63- class = " menu-item flex items-center gap-3 px-3 py-2.5 text-text-secondary hover:text-text hover:bg-white/10 transition-all duration-150"
63+ class = " menu-item flex items-center gap-3 px-4 py-3 text-text-secondary hover:text-text hover:bg-white/10 transition-all duration-150"
6464 style = { ` transition-delay: ${i * 30 }ms; ` }
6565 >
66- <link.Icon class = " w-4 h-4 " strokeWidth = { 1.5 } />
67- <span class = " text-sm " >{ link .text } </span >
66+ <link.Icon class = " w-5 h-5 " strokeWidth = { 1.5 } />
67+ <span class = " text-base " >{ link .text } </span >
6868 </a >
6969 ))
7070 }
7171 </div >
7272
73- <main class =" flex flex-col min-h-screen pt-14 " >
73+ <main class =" flex flex-col min-h-screen pt-24 " >
7474 <slot />
7575 </main >
7676</Layout >
0 commit comments