import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Niseko Fine Dining | Premium Japanese Cuisine", description: "Luxury fine dining restaurant in Niseko offering seasonal Japanese cuisine, premium Wagyu, and exceptional wine pairings with mountain views.", keywords: "fine dining, Niseko, Japanese cuisine, luxury restaurant, Wagyu, sushi, mountain dining", metadataBase: new URL("https://nisekofine.com"), alternates: { canonical: "https://nisekofine.com" }, openGraph: { title: "Niseko Fine Dining | Premium Japanese Cuisine", description: "Experience culinary excellence at our exclusive Niseko restaurant", url: "https://nisekofine.com", siteName: "Niseko Fine Dining", images: [ { url: "https://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-17447.jpg", alt: "Niseko Fine Dining Restaurant" } ], type: "website" }, twitter: { card: "summary_large_image", title: "Niseko Fine Dining | Premium Japanese Cuisine", description: "Luxury fine dining with seasonal ingredients and exceptional service", images: ["https://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-17447.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}