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"; import HeaderWrapper from "@/components/HeaderWrapper"; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{/* ✅ Meta Robots */} {/* Canonical handled by metadata above */}