From 8b4787f7924cbe51e6bdb9a642baf8d985d4c66e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 06:13:16 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 100 ++++++++++------------------------------------- 1 file changed, 21 insertions(+), 79 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ed8a94b..308a488 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextAbout from '@/components/sections/about/TextAbout'; export default function LandingPage() { @@ -40,7 +40,6 @@ export default function LandingPage() { name: "Contact", id: "contact"}, ]} brandName="Gallery of Tints" - button={{ text: "Contact Now", href: "#contact" }} /> @@ -120,42 +119,25 @@ export default function LandingPage() {
-
-
-
); -} +} \ No newline at end of file -- 2.49.1 From 5a2bae4cbbba950ee5ffdbfe7033d97cd9e28e82 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 06:13:16 +0000 Subject: [PATCH 2/2] 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 b7afc67..c169031 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #fdfbf9; + --card: #f5f3f0; + --foreground: #1a1a1a; + --primary-cta: #1a1a1a; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #fdfbf9; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #d1cfcd; + --background-accent: #e8e5e1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1