import type { Metadata } from "next"; import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { title: "4itaka - Join Our Book Club Community", description: "Connect with passionate readers at 4itaka. Monthly book discussions, diverse literary selections, and a welcoming community for all book lovers worldwide.", keywords: "book club, reading community, literature, book discussions, online book club, reader community", openGraph: { title: "4itaka - Book Club Community", description: "Join a vibrant community of readers discovering and discussing great books together.", siteName: "4itaka", type: "website" }, twitter: { card: "summary_large_image", title: "4itaka Book Club", description: "Connect with passionate readers. Monthly book discussions and literary community." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}