import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); export const metadata: Metadata = { title: "SpiderWebsitesOfficial - Modern Websites for Local Businesses", description: "Fast, professional websites for restaurants, barbershops & local services. Free consultation. Get more customers online today.", keywords: "website design, local business, restaurant website, barbershop website, small business website", robots: { index: true, follow: true, }, openGraph: { title: "SpiderWebsitesOfficial - Modern Websites for Local Businesses", description: "Fast, professional websites for restaurants, barbershops & local services. Get more customers online.", type: "website", siteName: "SpiderWebsitesOfficial"}, twitter: { card: "summary_large_image", title: "SpiderWebsitesOfficial - Websites for Local Businesses", description: "Modern websites that help local businesses attract more customers."}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}