import type { Metadata } from "next"; import { Prata } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const prata = Prata({ variable: "--font-prata", subsets: ["latin"], weight: ["400"], }); export const metadata: Metadata = { title: "PawsHaven - Premium Pet Supplies & Care Products", description: "Shop premium pet food, toys, beds, and grooming supplies at PawsHaven. Expert pet care products for dogs, cats, and more. Free shipping on orders over $50.", keywords: "pet shop, dog food, cat toys, pet supplies, pet care, pet products, quality pet brands", metadataBase: new URL("https://pawshaven.com"), alternates: { canonical: "https://pawshaven.com" }, robots: { index: true, follow: true }, openGraph: { title: "PawsHaven - Premium Pet Supplies & Care Products", description: "Discover premium pet supplies and expert care products for your beloved pets. Quality products trusted by pet owners nationwide.", siteName: "PawsHaven", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/two-irish-setters_1398-4900.jpg", alt: "Happy pets with PawsHaven products" }] }, twitter: { card: "summary_large_image", title: "PawsHaven - Premium Pet Supplies", description: "Quality pet products and expert care advice for your furry friends.", images: ["https://img.b2bpic.net/free-photo/two-irish-setters_1398-4900.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}