diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6aadf3c..925324a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,9 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { title: "LifeOS", description: "Your Personal AI Life Operating System"}; @@ -10,7 +15,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}