From bb5e75f78b95b281cb40a57ef76977bccc39246c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:09:00 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index dd5b431..c4f3a50 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -29,7 +29,7 @@ export default function AboutPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="floatingGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="flat" secondaryButtonStyle="layered" -- 2.49.1 From b7f068bc2b03137b5d8b7f971f3c748279c9273f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:09:00 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 21ab98f..895ac5d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -28,7 +28,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="floatingGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="flat" secondaryButtonStyle="layered" -- 2.49.1 From e1de94f0f3f07ae95143e777abb8bbcef27d24b5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:09:00 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 230 ++++++++++++++++------------------------------- 1 file changed, 77 insertions(+), 153 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7b5a853..bef318b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,12 +5,13 @@ import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import { Sparkles, Award, Star, Trophy, Calendar, CheckCircle } from "lucide-react"; +import { Sparkles, Award, Leaf, Star, Trophy, Calendar, CheckCircle } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -18,7 +19,7 @@ export default function HomePage() { { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Testimonials", id: "testimonials" }, - { name: "Book Now", id: "booking" }, + { name: "Book Now", id: "booking-cta" }, ]; const handleBookingSubmit = (email: string) => { @@ -32,7 +33,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="floatingGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="flat" secondaryButtonStyle="layered" @@ -51,86 +52,20 @@ export default function HomePage() { tag="Award-Winning Design" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "floatingGradient" }} + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "View Our Work & Book", href: "portfolio" }, { text: "Learn More", href: "about" }, ]} buttonAnimation="slide-up" mediaItems={[ - { - imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-outdoor-with-rosary-hand-concept-faith-spirituality-religion_627829-311.jpg", - imageAlt: "Luxury landscape design with manicured gardens", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-hotel-resort-with-chair-deck-leisure-vacation_74190-8436.jpg", - imageAlt: "Premium outdoor patio with water features", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/pond_23-2148013427.jpg", - imageAlt: "Elegant garden with native plantings", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg", - imageAlt: "Modern landscape design with hardscaping", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool-resort_1150-10730.jpg", - imageAlt: "Luxury poolside landscaping", - }, + { imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-outdoor-with-rosary-hand-concept-faith-spirituality-religion_627829-311.jpg", imageAlt: "Luxury landscape design with manicured gardens" }, + { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-hotel-resort-with-chair-deck-leisure-vacation_74190-8436.jpg", imageAlt: "Premium outdoor patio with water features" }, + { imageSrc: "http://img.b2bpic.net/free-photo/pond_23-2148013427.jpg", imageAlt: "Elegant garden with native plantings" }, + { imageSrc: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg", imageAlt: "Modern landscape design with hardscaping" }, + { imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool-resort_1150-10730.jpg", imageAlt: "Luxury poolside landscaping" }, ]} className="w-full" - useInvertedBackground={false} - /> - - - {/* Why Choose Us Section */} -
- -
- - {/* Metrics Section */} -
-
@@ -147,38 +82,35 @@ export default function HomePage() { textboxLayout="default" useInvertedBackground={true} products={[ - { - id: "1", - name: "Modern Garden Estate", - price: "Complete Transformation", - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", - imageAlt: "Modern garden estate with geometric plantings", - }, - { - id: "2", - name: "Poolside Resort Oasis", - price: "Water Feature Design", - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-swimming-pool-with-stair-ladder-around-there_74190-7881.jpg", - imageAlt: "Luxury poolside landscaping with natural stone", - }, - { - id: "3", - name: "Native Plant Haven", - price: "Sustainable Design", - imageSrc: "http://img.b2bpic.net/free-photo/rosemary_23-2148006085.jpg", - imageAlt: "Drought-resistant native plant landscape", - }, - { - id: "4", - name: "Urban Rooftop Garden", - price: "Premium Installation", - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-patio-with-table-chair_74190-7542.jpg", - imageAlt: "High-end rooftop garden with city views", - }, + { id: "1", name: "Modern Garden Estate", price: "Complete Transformation", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", imageAlt: "Modern garden estate with geometric plantings" }, + { id: "2", name: "Poolside Resort Oasis", price: "Water Feature Design", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-swimming-pool-with-stair-ladder-around-there_74190-7881.jpg", imageAlt: "Luxury poolside landscaping with natural stone" }, + { id: "3", name: "Native Plant Haven", price: "Sustainable Design", imageSrc: "http://img.b2bpic.net/free-photo/rosemary_23-2148006085.jpg", imageAlt: "Drought-resistant native plant landscape" }, + { id: "4", name: "Urban Rooftop Garden", price: "Premium Installation", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-patio-with-table-chair_74190-7542.jpg", imageAlt: "High-end rooftop garden with city views" }, ]} /> + {/* Services Section */} +
+ +
+ {/* Testimonials Section */}
+ {/* About Section */} +
+ +
+ + {/* Metrics Section */} +
+ +
+ {/* Booking CTA Section */}
Date: Fri, 6 Mar 2026 05:09:01 +0000 Subject: [PATCH 4/5] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index fcea656..4464219 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -29,7 +29,7 @@ export default function PortfolioPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="floatingGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="flat" secondaryButtonStyle="layered" -- 2.49.1 From 92156a7b38ebf5d680d25bf14096d35b692f5d12 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:09:01 +0000 Subject: [PATCH 5/5] Update src/app/services/page.tsx --- src/app/services/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 777db73..eb93926 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -29,7 +29,7 @@ export default function ServicesPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="floatingGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="flat" secondaryButtonStyle="layered" -- 2.49.1