From ba37a1c09a2ebe265d9c038a770536e9cea3c0dc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 4 May 2026 16:57:56 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cab45c9..7b97fe1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,17 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Nunito } 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: 'EcoDrive | Smart Fuel Tracking & AI Receipt Scanning App', description: 'Experience the future of fuel management with EcoDrive. Track spending, scan receipts with AI, and find top-rated gas stations in a sleek, dark-mode interface.' }; +const nunito = Nunito({ + variable: "--font-nunito", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +25,7 @@ export default function RootLayout({ return ( - + {children}