import type { Metadata } from "next"; import { Spectral } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spectral = Spectral({ variable: "--font-spectral", subsets: ["latin"], weight: ["200", "300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { title: "TECHSHOP | Innovation Hub", description: "TECHSHOP - Your destination for cutting-edge technology and innovation.", keywords: "techshop, technology, innovation", metadataBase: new URL("https://techshop.com"), alternates: { canonical: "https://techshop.com" }, robots: { index: true, follow: true }, openGraph: { title: "TECHSHOP | Innovation Hub", description: "TECHSHOP - Your destination for cutting-edge technology and innovation.", siteName: "TECHSHOP", type: "website" }, twitter: { card: "summary_large_image", title: "TECHSHOP | Innovation Hub", description: "TECHSHOP - Your destination for cutting-edge technology and innovation." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}