From 69435f22810d71db64c6cf72ba0a53b758232d8a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:46:48 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 703e80c..d7fe2cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,12 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ @@ -47,7 +41,7 @@ export default function RootLayout({ {children} -- 2.49.1 From a2ec36009a82f3b8a5eb905ed7f6652650f59a83 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:46:49 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 91 +++++++++++++++++++++++++++++++----------------- 1 file changed, 60 insertions(+), 31 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2fa15c1..070a98f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,21 +10,21 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Award, CheckCircle, Mail, Sparkles, Star, Zap } from "lucide-react"; +import { Award, CheckCircle, Mail, Sparkles, Star, Zap, Database, Workflow, Box, MapPin, Upload, Users } from "lucide-react"; export default function LandingPage() { return ( + +
+
@@ -140,7 +169,7 @@ export default function LandingPage() { Date: Tue, 3 Mar 2026 17:46:50 +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 53147f7..c480bac 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-nunito-sans), sans-serif; + font-family: var(--font-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1 From c7dcf0fa1477bd23d3e49944a1aacb0bd1085034 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:46:51 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 69fe33e..c6e2da2 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: #f5f4f0;; - --card: #ffffff;; - --foreground: #1a1a1a;; - --primary-cta: #2c2c2c;; - --secondary-cta: #f5f4f0;; - --accent: #8a8a8a;; - --background-accent: #e8e6e1;; */ + /* --background: #ffffff;; + --card: #f9f9f9;; + --foreground: #2c2c2c;; + --primary-cta: #0078d4;; + --secondary-cta: #f5f5f5;; + --accent: #ff8c42;; + --background-accent: #e6f2ff;; */ - --background: #f5f4f0;; - --card: #ffffff;; - --foreground: #1a1a1a;; - --primary-cta: #2c2c2c;; + --background: #ffffff;; + --card: #f9f9f9;; + --foreground: #2c2c2c;; + --primary-cta: #0078d4;; --primary-cta-text: #f5f4f0;; - --secondary-cta: #f5f4f0;; + --secondary-cta: #f5f5f5;; --secondary-cta-text: #1a1a1a;; - --accent: #8a8a8a;; - --background-accent: #e8e6e1;; + --accent: #ff8c42;; + --background-accent: #e6f2ff;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1