import type { Metadata } from "next"; import { Space_Grotesk } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spaceGrotesk = Space_Grotesk({ variable: "--font-space-grotesk", subsets: ["latin"], }); export const metadata: Metadata = { title: "Stranger Things Character Fan Site | Vote Your Favorite", description: "Explore detailed profiles of Stranger Things characters. Vote for your favorite and see who wins. Join thousands of fans in our community.", keywords: "stranger things, characters, eleven, mike wheeler, nancy, dustin, voting, fan community", metadataBase: new URL("https://strangerthings-fansite.com"), alternates: { canonical: "https://strangerthings-fansite.com" }, openGraph: { title: "Stranger Things Character Fan Site", description: "Meet the heroes of Hawkins and vote for your favorite Stranger Things character", siteName: "Stranger Things Fan Hub", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767005475797-aywnq0jb.jpg", alt: "Stranger Things characters" } ] }, twitter: { card: "summary_large_image", title: "Stranger Things Characters - Vote Now", description: "Explore Stranger Things characters and vote for your favorite", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767005475797-aywnq0jb.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}