import type { Metadata } from "next"; import { Playfair_Display } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const playfairDisplay = Playfair_Display({ variable: "--font-playfair-display", subsets: ["latin"], }); export const metadata: Metadata = { title: "SD STREET | Premium Streetwear from San Diego", description: "Bold streetwear designs crafted in San Diego. Premium quality apparel with authentic urban culture. Shop exclusive collections.", keywords: "streetwear, San Diego fashion, urban clothing, premium apparel, graphic tees, hoodies, streetwear brand", metadataBase: new URL("https://sdstreet.com"), alternates: { canonical: "https://sdstreet.com" }, openGraph: { title: "SD STREET | Premium Streetwear from San Diego", description: "Bold streetwear designs crafted in San Diego. Premium quality apparel with authentic urban culture.", url: "https://sdstreet.com", siteName: "SD STREET", type: "website", images: [ { url: "https://sdstreet.com/og-image.jpg", alt: "SD STREET Streetwear Brand" } ] }, twitter: { card: "summary_large_image", title: "SD STREET | Premium Streetwear from San Diego", description: "Bold streetwear designs crafted in San Diego. Premium quality apparel with authentic urban culture.", images: ["https://sdstreet.com/twitter-image.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}