From f0664d9a230f47cf80403343798465465e974a7f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:46:14 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eb042d6..6d4b45f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const dmSans = DM_Sans({ @@ -42,7 +37,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 17519d5070b5ff6467fc2939deee005a0d981042 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:46:14 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 433a47b..f26ddbc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,20 +9,21 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, CheckCircle, Heart } from 'lucide-react'; export default function LandingPage() { return ( -- 2.49.1 From 0f19ec15fdfb2ae27700d9277f286a838de273bf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:46:15 +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 c480bac..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-dm-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-dm-sans), sans-serif; + font-family: var(--font-poppins), sans-serif; } -- 2.49.1 From 1279caf2f55e19a32cce5d2b248f61bb71f13975 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:46:16 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index e6cfc10..0e1f9b7 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f5f5f5;; - --card: #ffffff;; + /* --background: #ffffff;; + --card: #f9f9f9;; --foreground: #1c1c1c;; - --primary-cta: #341f51;; + --primary-cta: #2c2c2c;; --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; */ + --accent: #15479c;; + --background-accent: #a8cce8;; */ - --background: #f5f5f5;; - --card: #ffffff;; + --background: #ffffff;; + --card: #f9f9f9;; --foreground: #1c1c1c;; - --primary-cta: #341f51;; + --primary-cta: #2c2c2c;; --primary-cta-text: #f5f5f5;; --secondary-cta: #ffffff;; --secondary-cta-text: #1c1c1c;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; + --accent: #15479c;; + --background-accent: #a8cce8;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1