import type { Metadata } from "next"; import { Fira_Code } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const firaCode = Fira_Code({ variable: "--font-fira-code", subsets: ["latin"], }); export const metadata: Metadata = { title: "PAVARAGA HAWAI'I - Authentic Hawaiian Café & Premium Coffee", description: "Discover PAVARAGA HAWAI'I, your destination for authentic Hawaiian café experience. Premium locally-sourced coffee, artisanal pastries, and genuine aloha spirit.", keywords: "Hawaiian café, specialty coffee, Kona coffee, artisan pastries, local business", metadataBase: new URL("https://pavaraga-hawaii.com"), alternates: { canonical: "https://pavaraga-hawaii.com" }, openGraph: { title: "PAVARAGA HAWAI'I - Authentic Hawaiian Café", description: "Experience authentic Hawaiian café culture with premium coffee and artisanal pastries", type: "website", siteName: "PAVARAGA HAWAI'I", images: [ { url: "https://img.b2bpic.net/free-photo/iced-latte-glass-pink-stand-wooden-table-summer-cafe-green-bushes_343596-1550.jpg", alt: "PAVARAGA HAWAI'I café" } ] }, twitter: { card: "summary_large_image", title: "PAVARAGA HAWAI'I - Authentic Hawaiian Café", description: "Premium coffee and artisan pastries with aloha spirit", images: ["https://img.b2bpic.net/free-photo/iced-latte-glass-pink-stand-wooden-table-summer-cafe-green-bushes_343596-1550.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}