From 0e0cd021668fae2e48b59e8891df3005fe2d3bb5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:58:23 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 68 +++++++++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 29 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f6718f7..73c9090 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,13 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; +import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Award, CheckCircle, Droplets, DollarSign, Heart, HelpCircle, Quote, Shield, Sparkles, Star, Zap } from 'lucide-react'; +import { Award, CheckCircle, Droplets, DollarSign, Heart, HelpCircle, Quote, Shield, Sparkles, Star, Zap, Scissors, Palette, Smile, Gem, Crown, Wind } from 'lucide-react'; export default function LandingPage() { return ( @@ -96,46 +96,56 @@ export default function LandingPage() {
-
-
-- 2.49.1 From b34fa3473cde50fb46f1c4edcb5f3175c6c0ac46 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:58:23 +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 0435273..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-archivo), 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-archivo), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1 From 8b3980b7b2ec2ed2e0b022bfdfed91279977fb1d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:58:23 +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 d80685e..119d520 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #000612e6; - --primary-cta: #D4AF37; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #d4af37; --primary-cta-text: #000000; - --secondary-cta: #000000; + --secondary-cta: #ffffff; --secondary-cta-text: #ffffff; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #d4af37; + --background-accent: #2a2a2a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1