From 6e16d67fe3b8b5edbcaea5b12f175430b8c9e9b9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:38:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb51b1..8c03558 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { DM_Sans } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const dmSans = DM_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DefenceShield - Advanced Defence Technology Solutions", - description: "Enterprise defence technology platform providing cutting-edge cybersecurity, threat intelligence, and strategic security solutions for critical infrastructure protection.", - keywords: "defence technology, cybersecurity, threat intelligence, critical infrastructure, security solutions, enterprise defence", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "DefenceShield - Advanced Defence Technology", - description: "Cutting-edge defence technology platform protecting critical infrastructure with enterprise-grade security solutions.", - type: "website", - siteName: "DefenceShield", - url: "https://defenceshield.io", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/a-modern-defence-technology-command-cent-1772814700761-fe3cd169.png", - alt: "DefenceShield Defence Technology Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "DefenceShield - Advanced Defence Technology", - description: "Enterprise security solutions for critical infrastructure protection", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/a-modern-defence-technology-command-cent-1772814700761-fe3cd169.png", - ], - }, -}; + title: "DefenceShield - Advanced Defence Technology", description: "Enterprise-grade defence systems for national security and critical infrastructure protection."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}