From 365f017427f2131d43ae9e478f99ca78523f273d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:09:34 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5ae2729..cb932a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,12 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -33,7 +34,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From b4bedff8cd4cfb4bf6c21fffc4c4dab3225310b8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:09:35 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 31e4ffa..ee08b25 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -77,8 +77,8 @@ export default function HomePage() {
Date: Wed, 4 Mar 2026 18:09:35 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index ce3eac0..0f9f89d 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-poppins), sans-serif; } -- 2.49.1 From cc5dbdd7996f6a63c7ef42ff3fa5a64d0e1c2b5b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:09:35 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index a83a1db..fb6ff2e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,7 +13,7 @@ --background: #ffffff;; --card: #f9f9f9;; --foreground: #000612e6;; - --primary-cta: #15479c;; + --primary-cta: #e63946;; --primary-cta-text: #ffffff;; --secondary-cta: #f9f9f9;; --secondary-cta-text: #000612e6;; -- 2.49.1