71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
metadataBase: new URL("https://skyandsoil.metatronnest.com"),
|
|
title: {
|
|
default: "Sky and Soil | Premium Real Estate in North Bengaluru",
|
|
template: "%s | Sky and Soil"
|
|
},
|
|
description: "Discover luxury apartments, villas, and plots in North Bengaluru. Sky and Soil connects you with nature-inspired living spaces and Godrej Properties.",
|
|
keywords: ["Real Estate", "Bengaluru", "Luxury Homes", "Godrej Properties", "North Bengaluru", "Villas", "Apartments"],
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
},
|
|
|
|
alternates: {
|
|
canonical: "./",
|
|
},
|
|
};
|
|
|
|
import { ThemeProvider } from "@/components/ThemeProvider";
|
|
import { CompareProvider } from "@/context/CompareContext";
|
|
import CompareBar from "@/components/CompareBar";
|
|
import MouseAnimation from "@/components/MouseAnimation";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head>
|
|
{/* ✅ Meta Robots */}
|
|
<meta name="robots" content="index, follow" />
|
|
|
|
{/* Canonical handled by metadata above */}
|
|
</head>
|
|
|
|
<body
|
|
className={`${inter.variable} antialiased`}
|
|
suppressHydrationWarning
|
|
>
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
<CompareProvider>
|
|
{children}
|
|
<CompareBar />
|
|
{/* <MouseAnimation /> */}
|
|
</CompareProvider>
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|