From ed3b55da7590f16ac79b6522f66b2a9a41d63a06 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:46:01 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1b2831b..197ea29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,17 +5,9 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Libre_Baskerville } 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: "Premium Real Estate in Tel-Aviv | TelAviv Realty", @@ -49,6 +41,16 @@ export const metadata: Metadata = { }, }; +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -57,9 +59,7 @@ export default function RootLayout({ return ( - + {children}