import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Harvest Restaurant | Fine Dining Farm-to-Table Experience", description: "Award-winning farm-to-table fine dining restaurant. Experience seasonal menus crafted with local, sustainable ingredients. Reserve your table at Harvest today.", keywords: "restaurant, fine dining, farm to table, seasonal menu, local ingredients, culinary", metadataBase: new URL("https://harvestrestaurant.com"), alternates: { canonical: "https://harvestrestaurant.com" }, openGraph: { title: "Harvest Restaurant | Fine Dining Farm-to-Table", description: "Discover exceptional culinary artistry at Harvest, where local ingredients meet innovative techniques.", url: "https://harvestrestaurant.com", siteName: "Harvest Restaurant", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/wide-restaurant-hall-with-wooden-table-chairs-6-persons_140725-8910.jpg", alt: "Harvest Restaurant fine dining experience" }] }, twitter: { card: "summary_large_image", title: "Harvest Restaurant | Fine Dining Experience", description: "Award-winning farm-to-table dining with seasonal menus and local ingredients.", images: ["https://img.b2bpic.net/free-photo/wide-restaurant-hall-with-wooden-table-chairs-6-persons_140725-8910.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}