diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index 1f016f8d..2314e35c 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -72,7 +72,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { ? `/passport/${profile.username}` : "/passport/me"; - const navItems = user ? userNavigation : navigation; + const navItems: { name: string; href: string }[] = []; const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); @@ -100,29 +100,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { {/* Navigation */} - + {/* Auth Section */}