Update src/app/layout.tsx

This commit is contained in:
2026-03-04 11:02:33 +00:00
parent 079c0597b8
commit 18bb3a2930

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}