From 72b3a5aadce5b02dd8cba3e6bd8aa099aeac75d5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:14:40 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 73 +++++++++++++++++----------------------------- 1 file changed, 26 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2a7182..80dffdd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import "./styles/variables.css"; 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +import { Tag } from "@/components/tag"; export const metadata: Metadata = { - title: "PhishGuard - Advanced Phishing Detection & Email Security", description: "Detect phishing threats instantly. AI-powered URL scanning, email analysis, and real-time threat intelligence. Protect your organization with 99.8% accuracy.", keywords: "phishing detection, email security, URL scanner, cyber threats, email verification, security tool", metadataBase: new URL("https://phishguard.io"), - alternates: { - canonical: "https://phishguard.io" - }, - openGraph: { - title: "PhishGuard - Advanced Phishing Detection", description: "Real-time AI-powered phishing detection protecting 50,000+ users. Scan URLs and emails instantly.", siteName: "PhishGuard", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOrBixe1z05uBeh3k07FPm07dP/sophisticated-cybersecurity-background-w-1772967669760-2b04d6bb.png", alt: "PhishGuard phishing detection platform" - } - ] - }, - twitter: { - card: "summary_large_image", title: "PhishGuard - Phishing Detection Made Easy", description: "Advanced email security with 99.8% threat detection rate. Protect your team now.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOrBixe1z05uBeh3k07FPm07dP/sophisticated-cybersecurity-background-w-1772967669760-2b04d6bb.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "PhishGuard - Advanced Phishing Detection", description: "Detect phishing threats before they strike with AI-powered detection protecting millions of users daily."}; -export default function RootLayout({ +const RootLayout = ({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) => { return ( - - + + {children} - + +