import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Old Louisville Coffee Co-op | Community Coffee Shop", description: "LGBTQ+ owned, community-focused coffee shop in Old Louisville, KY. Handcrafted coffee, fresh food, and a welcoming gathering space for everyone. Open daily.", keywords: "coffee shop, Louisville, Kentucky, LGBTQ+ friendly, community cafe, handcrafted coffee", openGraph: { title: "Old Louisville Coffee Co-op", description: "LGBTQ+ owned coffee shop and community gathering place in Old Louisville, Kentucky", type: "website", siteName: "Old Louisville Coffee Co-op", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWzU3Axi6U57Woo2nXhvnggWFV/uploaded-1772724034934-meuj9lym.jpg", alt: "Old Louisville Coffee Co-op interior"}, ], }, twitter: { card: "summary_large_image", title: "Old Louisville Coffee Co-op", description: "Community coffee shop in the heart of Old Louisville", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWzU3Axi6U57Woo2nXhvnggWFV/uploaded-1772724034934-meuj9lym.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}