Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bfc23c89ee |
@@ -1,8 +1,6 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Manrope } from "next/font/google";
|
||||||
import { DM_Sans } 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 "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
@@ -15,15 +13,6 @@ const dmSans = DM_Sans({
|
|||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
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 = {
|
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: "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: [
|
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>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
Reference in New Issue
Block a user