import type { Metadata } from "next"; import { IBM_Plex_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const ibmPlexSans = IBM_Plex_Sans({ variable: "--font-ibm-plex-sans", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "CompClub - Computer Club Community", description: "Join our thriving computer club. Connect with tech enthusiasts, learn coding, collaborate on projects, and build your career in technology.", keywords: "computer club, coding, technology, programming, hackathon, tech community", robots: { index: true, follow: true, }, openGraph: { title: "CompClub - Where Tech Enthusiasts Connect", description: "Join our vibrant community of 200+ members. Learn, code, and grow together.", type: "website", siteName: "CompClub", url: "https://compclub.com" }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}