import type { Metadata } from "next"; import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "DogHub - Dog Breeds, Training & Care Guide", description: "Discover everything about dog breeds, training tips, and care guides. Join our community of dog lovers for expert advice on raising happy, healthy dogs.", keywords: "dog breeds, dog training, dog care, pet guides, dog health, dog tips", metadataBase: new URL("https://doghub.com"), alternates: { canonical: "https://doghub.com" }, openGraph: { title: "DogHub - Your Complete Dog Care Guide", description: "Explore dog breeds, training techniques, and health tips from our community of experts.", siteName: "DogHub", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/cute-dog-grass_23-2149027322.jpg", alt: "Happy dogs and dog care" }] }, twitter: { card: "summary_large_image", title: "DogHub - Dog Breeds, Training & Care", description: "Your trusted resource for dog care, training, and breed information.", images: ["https://img.b2bpic.net/free-photo/cute-dog-grass_23-2149027322.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}