Update theme fonts

This commit is contained in:
2026-05-23 23:35:38 +00:00
parent 5e61e6038a
commit 7e2fd7bf76

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script