Update src/app/layout.tsx

This commit is contained in:
2026-03-04 10:34:08 +00:00
parent 5c1f6ad715
commit 646a19f4ef

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "CyberGuard AI - Enterprise Cybersecurity Solutions", description: "AI-powered cybersecurity services including threat detection, compliance training, penetration testing, and 24/7 SOC operations. Protect your enterprise today.", keywords: "cybersecurity, AI threat detection, security training, penetration testing, compliance, ISO 27001, GDPR, SOC, incident response, enterprise security", robots: {
index: true,
follow: true,
},
openGraph: {
title: "CyberGuard AI - Enterprise Cybersecurity Solutions", description: "Advanced AI-powered cybersecurity and threat protection for enterprises. Compliance training, penetration testing, and 24/7 SOC services.", type: "website", siteName: "CyberGuard AI", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATcVo69J87tmaBCX2GYPIrsC6x/a-modern-sleek-cybersecurity-dashboard-i-1772620127603-dd037a7d.png", alt: "CyberGuard AI Security Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "CyberGuard AI - Enterprise Cybersecurity", description: "AI-powered threat detection and security operations for enterprises", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATcVo69J87tmaBCX2GYPIrsC6x/a-modern-sleek-cybersecurity-dashboard-i-1772620127603-dd037a7d.png"],
},
};
title: "ClickBox - AI-Powered Cybersecurity Solutions", description: "Enterprise cybersecurity training, security testing, SOC services, and risk management powered by artificial intelligence."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}