this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move logic for not displaying on homepage into NavBar component

BK610 b123e317 d182606a

+5 -1
+5 -1
components/NavBar.tsx
··· 77 77 // Shorthand for going up one URL level: "." 78 78 return ( 79 79 <nav 80 - className={`${className} py-2 select-none font-light text-sm text-stone-800 dark:text-stone-200 border-b border-stone-800 dark:border-stone-200`} 80 + className={ 81 + pathname === "/" 82 + ? "invisible" 83 + : `${className} py-2 select-none font-light text-sm text-stone-800 dark:text-stone-200 border-b border-stone-800 dark:border-stone-200` 84 + } 81 85 > 82 86 <NavItem link="/" title="home" icon="🏠" animation="wigglelg" /> 83 87 {navItems || null}