Update src/app/layout.tsx

This commit is contained in:
2026-03-07 07:16:52 +00:00
parent 44def16a65
commit 17f4ae8dee

View File

@@ -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 (
<html lang="en">
<body>{children}
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `