import type { Metadata } from "next"; import { Rubik } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const rubik = Rubik({ variable: "--font-rubik", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew & Bloom - Specialty Coffee & Pastries", description: "Experience the finest specialty coffee and artisan pastries. Visit Brew & Bloom for handcrafted beverages in a warm, welcoming community café.", keywords: "specialty coffee, café, barista, artisan pastries, coffee shop, espresso, latte, community", metadataBase: new URL("https://brewandbloom.com"), alternates: { canonical: "https://brewandbloom.com" }, openGraph: { title: "Brew & Bloom - Specialty Coffee & Pastries", description: "Experience the finest specialty coffee and artisan pastries in our cozy café.", siteName: "Brew & Bloom", type: "website" }, twitter: { card: "summary_large_image", title: "Brew & Bloom - Specialty Coffee & Pastries", description: "Experience the finest specialty coffee and artisan pastries in our cozy café." }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}