import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Tape Vault | Rare VHS & Vintage Films", description: "Discover curated vintage VHS tapes. Authentic, restored analog cinema. Shop rare films, experience cinema history.", keywords: "VHS tapes, vintage films, analog cinema, retro movies, film collection", metadataBase: new URL("https://tapevault.com"), alternates: { canonical: "https://tapevault.com" }, openGraph: { title: "Tape Vault | Rare VHS & Vintage Films", description: "Discover curated vintage VHS tapes. Authentic, restored analog cinema. Shop rare films, experience cinema history.", type: "website", siteName: "Tape Vault", images: [ { url: "https://img.b2bpic.net/free-photo/music-audio-tape_93675-128289.jpg", alt: "Vintage VHS tape collection" } ] }, twitter: { card: "summary_large_image", title: "Tape Vault | Rare VHS & Vintage Films", description: "Discover curated vintage VHS tapes. Authentic, restored analog cinema.", images: ["https://img.b2bpic.net/free-photo/music-audio-tape_93675-128289.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}