From 4f64859590181fb8dcb9689d0fe0fe03d4674362 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 11:09:53 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ba9a024..c892114 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,14 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import FeatureProcessSteps from '@/components/sections/feature/FeatureProcessSteps'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import { Package, Sparkles, TrendingUp, Users } from 'lucide-react'; +import { Sparkles, TrendingUp, Users } from 'lucide-react'; export default function SitePage() { return ( @@ -26,12 +25,14 @@ export default function SitePage() { primaryButtonStyle="inset-glow" secondaryButtonStyle="glass" headingFontWeight="semibold" + theme={{ + "--background": "#0a0a0a", "--card": "#1a1a1a", "--foreground": "#fffffae6", "--primary-cta": "#fde047", "--secondary-cta": "#1a1a1a", "--accent": "#737373", "--background-accent": "#737373", "--primary-cta-text": "#0a0a0a", "--secondary-cta-text": "#fffffae6" + }} > -
- -
-
Date: Thu, 26 Feb 2026 11:09:54 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 4bbac56..c05863f 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #ffffff;; - --card: #fefefe;; - --foreground: #222222;; - --primary-cta: #e63946;; - --secondary-cta: #4caf50;; - --accent: #f5c4c7;; - --background-accent: #e0f4e6;; */ + /* --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fffffae6;; + --primary-cta: #fde047;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; */ - --background: #ffffff;; - --card: #fefefe;; - --foreground: #222222;; - --primary-cta: #e63946;; - --primary-cta-text: #ffffff;; - --secondary-cta: #4caf50;; - --secondary-cta-text: #120a00e6;; - --accent: #f5c4c7;; - --background-accent: #e0f4e6;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fffffae6;; + --primary-cta: #fde047;; + --primary-cta-text: #0a0a0a;; + --secondary-cta: #1a1a1a;; + --secondary-cta-text: #fffffae6;; + --accent: #737373;; + --background-accent: #737373;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1