From fcb27798fa080ad80dbadd17da7a192484328f6f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:37:32 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c966bbc..4e9632a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,22 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { @@ -50,7 +45,7 @@ export default function RootLayout({ {children} -- 2.49.1 From e347c392f13fc0991a52e8864047228ecdbf8ba9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:37:33 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 149 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 141 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d54ccd..8b320f5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,25 +5,26 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Info, Sparkles } from 'lucide-react'; +import { Info, Sparkles, Shirt, Cloud } from 'lucide-react'; export default function LandingPage() { return ( +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
Date: Wed, 4 Mar 2026 05:37:33 +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..ca36cb1 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-dm-sans), sans-serif; } -- 2.49.1 From ffe784f17ede3fa44e401be7c54c32a856654936 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:37:34 +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 ddbbc1e..a0a31f6 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: #f5f4ef;; - --card: #dad6cd;; - --foreground: #2a2928;; - --primary-cta: #2a2928;; - --secondary-cta: #ecebea;; - --accent: #ffffff;; - --background-accent: #c6b180;; */ + /* --background: #f7f6f7;; + --card: #ffffff;; + --foreground: #0c1325;; + --primary-cta: #0798ff;; + --secondary-cta: #ffffff;; + --accent: #93c7ff;; + --background-accent: #a8cde8;; */ - --background: #f5f4ef;; - --card: #dad6cd;; - --foreground: #2a2928;; - --primary-cta: #2a2928;; + --background: #f7f6f7;; + --card: #ffffff;; + --foreground: #0c1325;; + --primary-cta: #0798ff;; --primary-cta-text: #f5f4ef;; - --secondary-cta: #ecebea;; + --secondary-cta: #ffffff;; --secondary-cta-text: #2a2928;; - --accent: #ffffff;; - --background-accent: #c6b180;; + --accent: #93c7ff;; + --background-accent: #a8cde8;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1