import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "MyLeo - Premium Fashion Watches | Luxury Timepieces", description: "Discover MyLeo's collection of luxury fashion watches. Elegantly designed timepieces combining Swiss-inspired precision with contemporary style.", keywords: "luxury watches, fashion timepieces, premium watches, elegant watch design, Swiss watch, designer watch", metadataBase: new URL("https://myleo-watches.com"), alternates: { canonical: "https://myleo-watches.com" }, openGraph: { title: "MyLeo - Premium Fashion Watches", description: "Luxury timepieces that blend sophistication with innovation. Explore our curated collection.", type: "website", siteName: "MyLeo", images: [ { url: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", alt: "MyLeo Premium Fashion Watch Collection" }, ], }, twitter: { card: "summary_large_image", title: "MyLeo - Premium Fashion Watches", description: "Luxury timepieces for the modern individual", images: ["http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}