From 17f4ae8dee6cdb771dec514fbd562bb8b4b584f6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:16:52 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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}