From 976b9e0f0846cda9c4d842be4522933a3f6a0dce Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 13:12:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a7ae32..6feefd8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "Eclipse - Your Personal AI Life Operator", description: "Eclipse is your personal AI life operator—scheduling, anticipating needs, and unified in one interface. Join thousands already building the future."}; + title: "Eclipse - Your Personal AI Life Operator", description: "Eclipse is your personal AI life operator—scheduling, anticipating needs, and unified in one interface. Early access is open."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}