From fdf70e42e2eefc5b39ff2be014eea412da2eb4db Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 13:09:10 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++----------------------------------------- 1 file changed, 5 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5d30984..0a7ae32 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Eclipse - Your AI Life Operator | Early Access Waitlist", description: "Transform your life with Eclipse, the AI life operator. Automate scheduling, anticipate needs, and unify your digital world. Join 4,218+ on the waitlist for early access.", keywords: "AI life operator, automation, personal assistant, productivity, early access, AI technology", metadataBase: new URL("https://eclipse.ai"), - alternates: { - canonical: "https://eclipse.ai"}, - openGraph: { - title: "Eclipse - Your AI Life Operator", description: "Experience the next generation of AI assistance. Join the waitlist for early access.", url: "https://eclipse.ai", siteName: "Eclipse", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWetpMUy7tjlT0PjsBxrRnEKur/abstract-3d-floating-glass-blobs-with-so-1772713594967-bb7a8319.png", alt: "Eclipse AI Life Operator"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Eclipse - Your AI Life Operator", description: "Transform your life with AI. Join the waitlist for early access.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWetpMUy7tjlT0PjsBxrRnEKur/abstract-3d-floating-glass-blobs-with-so-1772713594967-bb7a8319.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}