diff --git a/src/app/bookings/page.tsx b/src/app/bookings/page.tsx index 1baed33..2be5aec 100644 --- a/src/app/bookings/page.tsx +++ b/src/app/bookings/page.tsx @@ -36,6 +36,7 @@ export default function BookingsPage() { description="Fill out the form below and we'll reach out to schedule your service session." background={{ variant: "gradient-bars" }} buttonText="Send Request" + useInvertedBackground={true} /> ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index d5bcb0d..980443d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TextAbout from '@/components/sections/about/TextAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Mail, Phone, MapPin } from "lucide-react"; +import { Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -55,7 +55,6 @@ export default function LandingPage() { diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 99afafb..9d39f4f 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -34,6 +34,8 @@ export default function ServicesPage() { animationType="slide-up" title="Garden Maintenance Services" description="We offer comprehensive landscaping services to keep your property vibrant." + textboxLayout="default" + useInvertedBackground={false} features={[ { id: "1", label: "Lawn Care", title: "Full Lawn Maintenance", items: ["Mowing", "Edging", "Fertilization", "Weed Control"] }, { id: "2", label: "Landscaping", title: "Garden Transformation", items: ["Design", "Planting", "Hardscaping", "Mulching"] }, @@ -50,4 +52,4 @@ export default function ServicesPage() { ); -} +} \ No newline at end of file