import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "The Mixer | Restaurant & Bar in Liberty Station, San Diego", description: "The Mixer is a family-owned restaurant in Liberty Station serving brunch, burgers, and cocktails with local flavor, good vibes, and community spirit.", keywords: "restaurant San Diego, Liberty Station dining, brunch, cocktails, burgers, happy hour, family-owned", openGraph: { title: "The Mixer | Restaurant & Bar in Liberty Station", description: "Experience brunch, burgers, and craft cocktails at The Mixer - San Diego's favorite community restaurant.", siteName: "The Mixer", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg", alt: "The Mixer restaurant dining experience" } ] }, twitter: { card: "summary_large_image", title: "The Mixer | Restaurant & Bar San Diego", description: "Brunch, burgers, cocktails, and community spirit at Liberty Station", images: ["https://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}