diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a9b20a..1c739d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AISync - Enterprise AI Platform | Real-Time Intelligence", description: "Advanced AI platform for enterprise machine learning. Deploy models at scale, process real-time analytics, and unlock intelligent automation. Start your free trial today.", keywords: "AI platform, machine learning, enterprise AI, predictive analytics, artificial intelligence, automation platform, API", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AISync - Transform Your Business with Enterprise AI", description: "Deploy AI models, process real-time analytics, and enable intelligent automation at enterprise scale.", type: "website", siteName: "AISync", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeurNHvp9bRaCQnmRpzKms2XAX/a-sophisticated-ai-platform-dashboard-in-1772966055640-4f0e380e.png", alt: "AISync AI Platform Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AISync - Enterprise AI Platform", description: "Deploy AI models and enable intelligent automation at scale.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeurNHvp9bRaCQnmRpzKms2XAX/a-sophisticated-ai-platform-dashboard-in-1772966055640-4f0e380e.png"], - }, -}; + title: "AISync - Real-Time AI Intelligence Platform", description: "Harness the power of advanced machine learning and real-time data processing. Transform your business with intelligent automation, predictive analytics, and seamless API integration."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}