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" 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" 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 */} -