diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5a2845..f743771 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,18 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Roboto } from "next/font/google"; -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: 'Limpopo Estates | Premium Property Listings', description: 'Discover your dream home in Limpopo. Browse our exclusive collection of residential and commercial properties across the province with expert local guidance.' }; +const roboto = Roboto({ + variable: "--font-roboto", + subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +26,7 @@ export default function RootLayout({ return ( - + {children}