this repo has no description www.baileykane.co/

Move layout details into layout.tsx. TODO: Metadata

+1 -12
+1 -12
components/BaseLayout.tsx
··· 24 24 <Head> 25 25 <title>{title}</title> 26 26 </Head> 27 - <div 28 - className="flex flex-col items-center 29 - min-h-screen w-full 30 - bg-stone-50 31 - dark:bg-gradient-to-br dark:from-stone-900 dark:to-stone-800 32 - text-stone-900 dark:text-stone-100" 33 - > 34 - <div className="max-w-7xl w-full p-2 space-y-4"> 35 - <NavBar className={navbarVisible ? "" : "invisible"} /> 36 - <main>{children}</main> 37 - </div> 38 - </div> 27 + {children} 39 28 </> 40 29 ); 41 30 }