import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Premium Alpine Skiing Gear | Alpine Gear Switzerland", description: "Swiss-engineered skiing equipment trusted by alpine athletes worldwide. Shop high-performance jackets, boots, and gear.", keywords: "ski gear, skiing equipment, alpine gear, Swiss ski gear, ski jacket, ski boots", metadataBase: new URL("https://example.com"), alternates: { canonical: "https://example.com" }, openGraph: { title: "Premium Alpine Skiing Gear", description: "Swiss-engineered skiing equipment for performance and safety", siteName: "Alpine Gear", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754763910-3ftz1crb.jpg", alt: "Alpine Gear skiing equipment" } ] }, twitter: { card: "summary_large_image", title: "Premium Alpine Skiing Gear", description: "Swiss-engineered equipment for mountain performance", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754763910-3ftz1crb.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}