import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "AuthVault - Enterprise Secure Authentication System", description: "Military-grade secure authentication with bcrypt encryption, 2FA, session management, and SQL injection protection. Trusted by enterprises worldwide.", keywords: "secure authentication, login system, 2FA, two-factor authentication, password hashing, bcrypt, session management, SQL injection protection", metadataBase: new URL("https://example.com"), alternates: { canonical: "https://example.com", }, openGraph: { title: "AuthVault - Enterprise Secure Authentication", description: "Military-grade encryption and advanced security features for enterprise authentication.", url: "https://example.com", siteName: "AuthVault", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/software-developers-using-laptop-data-center-managing-server-virtualization_482257-122525.jpg", alt: "Secure authentication dashboard", }, ], }, twitter: { card: "summary_large_image", title: "AuthVault - Secure Authentication System", description: "Enterprise-grade authentication with military-grade encryption and 2FA.", images: ["http://img.b2bpic.net/free-photo/software-developers-using-laptop-data-center-managing-server-virtualization_482257-122525.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}