Update src/app/layout.tsx

This commit is contained in:
2026-03-04 01:45:15 +00:00
parent b951bf9a53
commit bfc23c89ee

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}