diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f24ea0..eea9ab5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "AIFlow - Enterprise AI Platform for Real-Time Intelligence", description: "Transform data into actionable insights with AIFlow's powerful AI platform. Real-time analytics, machine learning, and automation for enterprise success.", keywords: "AI platform, machine learning, data analytics, real-time insights, enterprise AI, predictive analytics, automation", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AIFlow - Enterprise AI Platform", description: "Real-time AI intelligence platform for data-driven decision making", type: "website", siteName: "AIFlow", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AegCzXGaLpKQWaZB0bEZCIF5XQ/a-sleek-modern-ai-platform-dashboard-int-1772969702418-476a2b6f.png", alt: "AIFlow Platform Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AIFlow - AI Platform", description: "Transform data with enterprise AI intelligence", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AegCzXGaLpKQWaZB0bEZCIF5XQ/a-sleek-modern-ai-platform-dashboard-int-1772969702418-476a2b6f.png"], - }, + title: 'AIFlow - Real-Time AI Intelligence Platform', + description: 'Monitor, analyze, and optimize your business with cutting-edge artificial intelligence.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}