import type { Metadata } from "next"; import { Plus_Jakarta_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const plusJakartaSans = Plus_Jakarta_Sans({ variable: "--font-plus-jakarta-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Daily Brew - Specialty Coffee Shop", description: "Discover exceptional specialty coffee and fresh pastries in our cozy coffee shop. Visit us for quality beans, skilled craftsmanship, and community.", keywords: "specialty coffee, coffee shop, pastries, local cafe, artisan coffee", metadataBase: new URL("https://thedailybrew.com"), alternates: { canonical: "https://thedailybrew.com" }, openGraph: { title: "The Daily Brew - Your Daily Escape", description: "Discover exceptional specialty coffee and fresh pastries in a warm, welcoming space.", siteName: "The Daily Brew", type: "website" }, twitter: { card: "summary_large_image", title: "The Daily Brew - Specialty Coffee Shop", description: "Your daily escape awaits with exceptional coffee and fresh pastries." }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}