import type { Metadata } from "next"; import { Plus_Jakarta_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const plusJakartaSans = Plus_Jakarta_Sans({ variable: "--font-plus-jakarta-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Star Wars Fan Community | Connect & Celebrate", description: "Join thousands of Star Wars fans. Connect with fellow enthusiasts, discuss the saga, attend events, and celebrate everything Star Wars together.", keywords: "Star Wars, fan community, discussions, events, Star Wars fans", metadataBase: new URL("https://starwarsfans.com"), alternates: { canonical: "https://starwarsfans.com" }, openGraph: { title: "Star Wars Fan Community", description: "Join the ultimate Star Wars fan community", siteName: "Star Wars Fans", type: "website" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}