From 6fad2b60fe50f211541d89b0d91d18c9e0a49af3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 06:15:12 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 86 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1abe1c6..b59520f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,6 +6,9 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TextAbout from '@/components/sections/about/TextAbout'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; export default function LandingPage() { return ( @@ -29,6 +32,8 @@ export default function LandingPage() { name: "Services", id: "services"}, { name: "Signature", id: "signature"}, + { + name: "Gallery", id: "gallery"}, { name: "Testimonials", id: "testimonials"}, { @@ -94,6 +99,87 @@ export default function LandingPage() { tag="Our Expertise" /> + + + +
+ +
+ +
+ +
); -- 2.49.1 From 15a637fb0d9e7ebd8ad330f9bc28eeaa63029856 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 06:15:12 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 365b321..9894390 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000000; + --background: #0a0a0a; --card: #1a1a1a; - --foreground: #F8F8F8; - --primary-cta: #D4AF37; + --foreground: #f5f5f5; + --primary-cta: #ffdf7d; --primary-cta-text: #000000; - --secondary-cta: #333333; + --secondary-cta: #1a1a1a; --secondary-cta-text: #F8F8F8; - --accent: #DAA520; - --background-accent: #0a0a0a; + --accent: #b8860b; + --background-accent: #8b6914; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1