From 43e5acbb72e7625e3d395413f9b3560f49511f77 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 10:49:33 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 296 ++++++----------------------------------------- 1 file changed, 36 insertions(+), 260 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9126f6f..a3d967d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; @@ -15,31 +15,22 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 4800766c0a2ee64c3f3b90af73a87cd32e52fbbe Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 10:49:34 +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 52de42f..aa7fd03 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-open-sans), sans-serif; + font-family: var(--font-montserrat), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1 From 30a75647cc497f822f05b1c2370021aa78a14e58 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 10:49:34 +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 76c7cc4..a1ef992 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #050012; - --card: #040121; - --foreground: #f0e6ff; - --primary-cta: #c89bff; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #f5f5f5; + --primary-cta: #dfff1c; --primary-cta-text: #050012; - --secondary-cta: #1d123b; + --secondary-cta: #1a1a1a; --secondary-cta-text: #f0e6ff; - --accent: #684f7b; - --background-accent: #65417c; + --accent: #8b9a1b; + --background-accent: #5d6b00; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1