diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c4e787f..b0dc61c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SecureAI - AI-Powered Cybersecurity Platform", description: "Enterprise cybersecurity solutions powered by AI. Real-time threat detection, zero-trust security, and automated incident response for modern organizations.", keywords: "cybersecurity, AI security, threat detection, enterprise security, zero-trust, incident response", metadataBase: new URL("https://secureai.com"), - alternates: { - canonical: "https://secureai.com"}, - openGraph: { - title: "SecureAI - AI-Powered Cybersecurity for Enterprises", description: "Protect your organization with next-generation threat detection and automated response powered by artificial intelligence.", type: "website", siteName: "SecureAI", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ajch3l9nDNryRaG617sD5RJtkv/a-cutting-edge-cybersecurity-dashboard-w-1773109740728-43d85b10.png", alt: "SecureAI cybersecurity dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SecureAI - Enterprise Cybersecurity Platform", description: "AI-powered threat detection and automated incident response for enterprises", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ajch3l9nDNryRaG617sD5RJtkv/a-cutting-edge-cybersecurity-dashboard-w-1773109740728-43d85b10.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SecureAI - Enterprise Cybersecurity Platform", description: "AI-powered threat detection and automated incident response for modern enterprises. Protect your organization with next-generation security."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -