From 7aff8d97f64bf54b2d953d7111674b6e1ae00dcd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 09:54:09 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9eeca3e..540f87d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,17 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const raleway = Raleway({ + variable: "--font-raleway", subsets: ["latin"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { @@ -54,7 +44,7 @@ export default function RootLayout({ {children} -- 2.49.1 From ffa7c61ee69eb3c76859f1be7c556a355c3102c4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 09:54:11 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 73d72ad..2d2090e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { Award, Sparkles, Flag, Zap, Trophy, Phone, Star, Crown, Briefcase } fro export default function LandingPage() { return (