From bfc23c89ee1b93fca9a86bbc97e0ff7ba07ea8b7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:45:15 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index db96c1d..64f1446 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,6 @@ import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import { DM_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"; @@ -15,15 +13,6 @@ const dmSans = DM_Sans({ variable: "--font-dm-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"], -}); - export const metadata: Metadata = { title: "Runtime File Antivirus Scanner | Real-Time Threat Detection", description: "ThreatShield: Advanced runtime antivirus scanning that detects threats as files execute. Enterprise-grade protection with 99.7% accuracy and sub-50ms response.", keywords: "antivirus, runtime scanning, malware detection, cybersecurity, endpoint protection, real-time threat detection", openGraph: { title: "ThreatShield - Runtime Antivirus Scanner", description: "Detect threats in real-time as code executes. Advanced heuristic analysis protects your systems before damage occurs.", type: "website", siteName: "ThreatShield", images: [ @@ -52,7 +41,7 @@ export default function RootLayout({ {children} -- 2.49.1