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 content from BaseLayout into actual layout file. TODO: Metadata

BK610 1b45a5ab db7c5d77

+15 -1
+15 -1
app/layout.tsx
··· 1 1 import "@/styles/globals.css"; 2 2 import { PostHogProvider } from "./providers"; 3 3 import type { Metadata } from "next"; 4 + import NavBar from "@/components/NavBar"; 4 5 5 6 export const metadata: Metadata = { 6 7 title: "Bailey Kane", ··· 36 37 return ( 37 38 <html lang="en"> 38 39 <body className="antialiased"> 39 - <PostHogProvider>{children}</PostHogProvider> 40 + <PostHogProvider> 41 + <div 42 + className="flex flex-col items-center 43 + min-h-screen w-full 44 + bg-stone-50 45 + dark:bg-gradient-to-br dark:from-stone-900 dark:to-stone-800 46 + text-stone-900 dark:text-stone-100" 47 + > 48 + <div className="max-w-7xl w-full p-2 space-y-4"> 49 + <NavBar /> 50 + <main>{children}</main> 51 + </div> 52 + </div> 53 + </PostHogProvider> 40 54 </body> 41 55 </html> 42 56 );