From 18bb3a29309bf9747dfd142d668e0dfc67d352be Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:02:33 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3ae3299..b8f307a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,21 @@ 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"], -}); +import "./styles/globals.css"; 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" - } - ] - }, + title: "La Maison - Plant-Based Paradise in Anjuna, Goa", description: "Discover La Maison—where fresh, conscious cuisine meets tropical tranquility. A sanctuary for mindful travelers, digital nomads, and kindred spirits seeking beauty, nourishment, and belonging.", keywords: "vegan cafe, plant-based restaurant, Goa, Anjuna, conscious living, digital nomad", openGraph: { + title: "La Maison - Plant-Based Paradise in Anjuna, Goa", description: "Experience the perfect blend of wellness, community, and culinary excellence tailored to every guest.", type: "website"}, 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 - } + card: "summary_large_image", title: "La Maison - Plant-Based Paradise in Anjuna, Goa", description: "Discover La Maison—where fresh, conscious cuisine meets tropical tranquility."}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}