From 4998f877a04361c88aa7dfebd8a2c0035475eac3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 23:45:57 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 72 ++++++++++++++++-------------------------------- 1 file changed, 23 insertions(+), 49 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3d85bb9..003560d 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 BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; -import ContactText from '@/components/sections/contact/ContactText'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -21,10 +21,10 @@ export default function LandingPage() { contentWidth="mediumSmall" sizing="mediumLargeSizeLargeTitles" background="noiseDiagonalGradient" - cardStyle="inset" - primaryButtonStyle="flat" - secondaryButtonStyle="layered" - headingFontWeight="light" + cardStyle="glass-depth" + primaryButtonStyle="primary-glow" + secondaryButtonStyle="glass" + headingFontWeight="semibold" > @@ -88,17 +72,13 @@ export default function LandingPage() {
-
@@ -144,22 +122,18 @@ export default function LandingPage() {
-
-- 2.49.1 From f8e0a9a306b6c3594291fda6d6eb27b54d0b83b7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 23:45:58 +0000 Subject: [PATCH 2/3] 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..9d73b7d 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-barlow-condensed), 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-bebas-neue), sans-serif; } -- 2.49.1 From 6f77f6f0af28c65fc5c98e0b6f1f936c371e6aa8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 23:45:58 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d757649..c8b9436 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -11,14 +11,14 @@ --background-accent: #ffffff; */ --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #f0ece0; + --card: #151515; + --foreground: #ffffff; --primary-cta: #c9a84c; --primary-cta-text: #0a0a0a; --secondary-cta: #ef4444; --secondary-cta-text: #ffffff; - --accent: #2a2a2a; - --background-accent: #222222; + --accent: #b8860b; + --background-accent: #2a2a2a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1