import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import { Inter } 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"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "La Maison | Vegan Café in Anjuna, Goa | Plant-Based Paradise", description: "Discover La Maison—a plant-based sanctuary in Anjuna, Goa. Fresh vegan cuisine, inclusive community, and digital nomad haven. Order online or visit us today.", keywords: "vegan cafe goa, plant-based restaurant anjuna, lgbtq friendly cafe, digital nomad workspace, conscious dining, ethical cuisine", metadataBase: new URL("https://lamaisonvegan.com"), alternates: { canonical: "https://lamaisonvegan.com" }, openGraph: { title: "La Maison | Plant-Based Paradise in Anjuna, Goa", description: "Fresh, conscious cuisine meets tropical tranquility. Your sanctuary for nourishment and belonging.", url: "https://lamaisonvegan.com", siteName: "La Maison Vegan Café", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design-with-wooden-wall-green-wall-grey-chairs_191095-99746.jpg", alt: "vegan cafe interior bohemian tropical plants natural lighting" } ] }, twitter: { card: "summary_large_image", title: "La Maison | Plant-Based Paradise in Anjuna, Goa", description: "Fresh vegan cuisine, inclusive community, digital nomad haven. Experience conscious dining.", images: ["http://img.b2bpic.net/free-photo/modern-cafe-interior-design-with-wooden-wall-green-wall-grey-chairs_191095-99746.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}