diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 849fee8..22b1ed3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-