diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0cd73f1..e201871 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,32 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Command Your AI Empire | Imperium Enterprise Dashboard", - description: "Production-ready enterprise command center for AI agencies. Real-time multitenant control, AI agent fleet management, and white-labeled client transparency. $15K/mo precision platform.", - keywords: "enterprise dashboard, AI management, multitenant platform, AI agents, real-time intelligence, SaaS platform, agency management", - metadataBase: new URL("https://imperium.ai"), - alternates: { - canonical: "https://imperium.ai", - }, - openGraph: { - title: "Command Your AI Empire in Real Time | Imperium", - description: "Control every agent, campaign, and revenue stream from a single surgical interface. Real-time metrics, predictive intelligence, and white-labeled client transparency.", - url: "https://imperium.ai", - siteName: "Imperium", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png", - alt: "Imperium Enterprise Dashboard Command Center", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Command Your AI Empire | Imperium Enterprise Dashboard", - description: "Control 50+ client accounts, AI agent fleets, and revenue streams from one command center.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Create Next App', + description: 'Generated by create next app', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +