From 4e60283d1fab840d655f8a47025768ba85b6cfd7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 09:44:57 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 173 ++++++++++++----------------------------------- 1 file changed, 45 insertions(+), 128 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c00dae2..3c98158 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,10 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; @@ -31,21 +31,13 @@ export default function LandingPage() { @@ -54,71 +46,44 @@ export default function LandingPage() {
@@ -130,17 +95,11 @@ export default function LandingPage() { description="We blend creative storytelling with rigorous analytical precision to ensure your brand doesn't just reach the target—it dominates it. Experience growth built for the next era." metrics={[ { - value: "100+", - title: "Clients Served", - }, + value: "100+", title: "Clients Served"}, { - value: "500M+", - title: "Impressions", - }, + value: "500M+", title: "Impressions"}, { - value: "12", - title: "Award Wins", - }, + value: "12", title: "Award Wins"}, ]} imageSrc="http://img.b2bpic.net/free-photo/global-network-illustration_53876-16141.jpg" mediaAnimation="blur-reveal" @@ -156,19 +115,13 @@ export default function LandingPage() { features={[ { icon: Zap, - title: "Rapid Growth", - description: "Accelerate your market capture with data-driven strategies.", - }, + title: "Rapid Growth", description: "Accelerate your market capture with data-driven strategies."}, { icon: Shield, - title: "Brand Integrity", - description: "Ensure your messaging is consistent and powerful across all channels.", - }, + title: "Brand Integrity", description: "Ensure your messaging is consistent and powerful across all channels."}, { icon: Target, - title: "Precision Targeting", - description: "Reach your ideal customers with hyper-accurate audience segmentation.", - }, + title: "Precision Targeting", description: "Reach your ideal customers with hyper-accurate audience segmentation."}, ]} title="Strategic Capabilities" description="Our core marketing framework ensures end-to-end performance and brand resonance." @@ -178,97 +131,61 @@ export default function LandingPage() {
-
-
); -} +} \ No newline at end of file -- 2.49.1 From a873a47da933a684a089f8656ca687bb036ec0c6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 09:44:57 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b88eb59..a551234 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; + --background: #0a0a0c; + --card: #16161a; --foreground: #ffffff; - --primary-cta: #1f7cff; + --primary-cta: #7dd3fc; --primary-cta-text: #ffffff; - --secondary-cta: #010101; + --secondary-cta: #38bdf8; --secondary-cta-text: #ffffff; - --accent: #1f7cff; - --background-accent: #f96b2f; + --accent: #0ea5e9; + --background-accent: #1f2937; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1