import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "StepStyle - Premium Shoe Store & Fashion Footwear", description: "Discover our curated collection of premium shoes for every occasion. Shop trending styles, comfortable footwear, and exclusive sneaker releases at StepStyle.", keywords: "shoes, footwear, sneakers, fashion shoes, designer shoes, comfortable shoes, shoe store", metadataBase: new URL("https://stepstyle.com"), alternates: { canonical: "https://stepstyle.com" }, openGraph: { title: "StepStyle - Premium Shoe Store & Fashion Footwear", description: "Discover our curated collection of premium shoes for every occasion. Shop trending styles and exclusive releases.", siteName: "StepStyle", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045280682-cq1jxn74.jpg", alt: "StepStyle Shoe Store" }] }, twitter: { card: "summary_large_image", title: "StepStyle - Premium Shoe Store & Fashion Footwear", description: "Discover our curated collection of premium shoes for every occasion.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045280682-cq1jxn74.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}