Update src/app/layout.tsx

This commit is contained in:
2026-03-07 13:39:49 +00:00
parent ff96042f36
commit e9e35eaec2

View File

@@ -1,19 +1,6 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
@@ -21,38 +8,16 @@ const interTight = Inter_Tight({
});
export const metadata: Metadata = {
title: "Kabini Houseboat | Luxury Kerala Backwater Cruises in Kumarakom", description: "Experience premium luxury houseboats in Kumarakom's serene backwaters. Book romantic escapes, family holidays, or corporate retreats with authentic Kerala hospitality.", keywords: "luxury houseboat Kerala, Kumarakom backwater cruise, premium backwater experience, honeymoon package Kerala, family houseboat vacation", metadataBase: new URL("https://kabinihouseboat.com"),
alternates: {
canonical: "https://kabinihouseboat.com"},
openGraph: {
title: "Kabini Houseboat | Luxury Backwater Experience", description: "Drift through golden sunsets aboard premium houseboats in Kerala's tranquil backwaters.", url: "https://kabinihouseboat.com", siteName: "Kabini Houseboat", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/sunset-bay_23-2147670170.jpg", alt: "Luxury houseboat on Kerala backwaters at golden sunset"},
],
},
twitter: {
card: "summary_large_image", title: "Kabini Houseboat | Premium Kerala Experience", description: "Luxury backwater cruises with authentic hospitality and unforgettable moments.", images: ["http://img.b2bpic.net/free-photo/sunset-bay_23-2147670170.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Kabini Houseboat | Luxury Kerala Backwater Escapes", description: "Experience serene luxury aboard the Kabini Houseboat. Romantic getaways, family adventures, and corporate retreats in Kumarakom's tranquil backwaters."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${interTight.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}