From 9359a4d1955181c913949fd5b41cd2ba42bf6628 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 09:50:41 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index efdb67a..49f5009 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,11 +5,11 @@ import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; @@ -25,18 +25,18 @@ export default function LandingPage() { cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="radial-glow" - headingFontWeight="light" + headingFontWeight="semibold" > @@ -169,8 +169,13 @@ export default function LandingPage() { -- 2.49.1 From 5f1e9d9ad405b346b2772aa828a0758161f01c23 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 09:50:41 +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..efe6053 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-inter), 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-libre-baskerville), serif; } -- 2.49.1 From e830408e96996eb80b698b9a4c1e0b6e76439b1f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 09:50:42 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 72cad5c..228d4fd 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #080200; - --card: #1a0d0b; - --foreground: #ffe6d5; - --primary-cta: #ffaa70; + --background: #fbfbfb; + --card: #f2f2f2; + --foreground: #1a1a1a; + --primary-cta: #1a1a1a; --primary-cta-text: #080200; - --secondary-cta: #170b07; + --secondary-cta: #e8e8e8; --secondary-cta-text: #ffe6d5; - --accent: #7b5e4a; - --background-accent: #b8541e; + --accent: #d4af37; + --background-accent: #f0ede0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1