From e9e35eaec2d40b5d483be09f5b2ddf5e95ab0574 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:39:49 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++----------------------------------------- 1 file changed, 5 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2aa17f4..ed43267 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}