|
|
|
|
@@ -1,60 +1,18 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Archivo } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const archivo = Archivo({
|
|
|
|
|
variable: "--font-archivo", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Space Villa Homestay | Peaceful Stay in Manalur, Kerala", description: "Experience authentic Kerala hospitality at Space Villa Homestay in Manalur. Peaceful, budget-friendly rooms (₹3,600-₹3,700/night) with 4.9★ rating from 135+ guests. Perfect for couples, families & travelers.", keywords: "homestay Manalur Kerala, budget homestay near Thrissur, peaceful homestay Kerala, Kerala guest house, accommodation Manalur, couples friendly homestay, family homestay Kerala", metadataBase: new URL("https://spacevillahomestay.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://spacevillahomestay.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Space Villa Homestay | Peaceful Nature Stay in Manalur, Kerala", description: "Discover authentic Kerala hospitality at Space Villa Homestay. Peaceful rooms, warm service, 4.9★ rating. Book your serene getaway today!", url: "https://spacevillahomestay.com", siteName: "Space Villa Homestay", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/young-asian-woman-relax-forest-beautiful-female-happy-using-relax-time-nature_7861-1735.jpg", alt: "Space Villa Homestay exterior view"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
type: "website"
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Space Villa Homestay | Peaceful Kerala Getaway", description: "Experience authentic Kerala hospitality. 4.9★ rated, budget-friendly rooms. Perfect for couples, families & travelers seeking peace.", images: ["http://img.b2bpic.net/free-photo/young-asian-woman-relax-forest-beautiful-female-happy-using-relax-time-nature_7861-1735.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
title: 'Space Villa Homestay | Peaceful Stay in Manalur, Kerala',
|
|
|
|
|
description: 'Experience authentic Kerala hospitality at Space Villa Homestay. Serene nature stay with cozy rooms, budget-friendly rates, and warm local hospitality. Book your peaceful retreat today!',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1422,7 +1380,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|