import type { Metadata } from "next"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Inter } from "next/font/google"; import { Plus_Jakarta_Sans } from "next/font/google"; import { Inter } from "next/font/google"; const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Artisan Brew | Premium Coffee & Community Café", description: "Discover handcrafted espresso drinks, single-origin beans, and a warm community space. Visit our downtown café for the perfect coffee experience.", keywords: "coffee shop, espresso, artisan coffee, café, specialty drinks, coffee beans, barista, downtown café", metadataBase: new URL("https://artisanbrew.com"), alternates: { canonical: "https://artisanbrew.com" }, openGraph: { title: "Artisan Brew | Premium Coffee & Community Café", description: "Experience exceptional handcrafted coffee and community.", siteName: "Artisan Brew", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/breakfast-with-espresso-cup-hot-coffee-croissant-black-stone-plate-coffee-aroma_482257-18271.jpg", alt: "Artisan Brew Coffee" } ] }, twitter: { card: "summary_large_image", title: "Artisan Brew | Premium Coffee", description: "Discover exceptional handcrafted coffee.", images: ["https://img.b2bpic.net/free-photo/breakfast-with-espresso-cup-hot-coffee-croissant-black-stone-plate-coffee-aroma_482257-18271.jpg"] }, robots: { index: true, follow: true } }; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const plusJakartaSans = Plus_Jakarta_Sans({ variable: "--font-plus-jakarta-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}