import type { Metadata } from "next"; import { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "George Felix Properties Nig Ltd | Industrial Real Estate Abuja", description: "Trusted industrial & commercial real estate in Abuja. 5.0★ rated. Premium properties in Guzape. Transparent transactions, professional service.", keywords: "industrial real estate Abuja, commercial property Abuja, warehouse for sale, investment properties, Guzape properties", robots: { index: true, follow: true, }, openGraph: { title: "George Felix Properties Nig Ltd | Industrial Real Estate Abuja", description: "Premium industrial & commercial properties with 5-star ratings. Secure your investment in Abuja today.", url: "https://georgefelixproperties.com", siteName: "George Felix Properties Nig Ltd", type: "website"}, twitter: { card: "summary_large_image", title: "George Felix Properties Nig Ltd", description: "Trusted industrial real estate in Abuja. 5.0★ rated by verified clients."}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}