import type { Metadata } from "next"; import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "25% West African | Celebrating Culture & Community", description: "Meet the collective celebrating West African heritage, creativity, and community. Five powerful voices united by culture and purpose.", keywords: "West African, culture, community, creative collective, heritage, cultural celebration", metadataBase: new URL("https://25percentwest.com"), alternates: { canonical: "https://25percentwest.com" }, openGraph: { title: "25% West African", description: "Celebrating West African culture, creativity, and community with Noyetta, Reals, Beans, Nicca, and Georgie.", url: "https://25percentwest.com", siteName: "25% West African", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/portrait-photorealistic-rastafari-woman-with-african-dreads_23-2151516432.jpg", alt: "25% West African Collective" } ] }, twitter: { card: "summary_large_image", title: "25% West African | Celebrating Culture & Community", description: "Five creative voices united by West African heritage and pride.", images: ["https://img.b2bpic.net/free-photo/portrait-photorealistic-rastafari-woman-with-african-dreads_23-2151516432.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}