diff --git a/src/app/page.tsx b/src/app/page.tsx
index 469ede2..4b8ad93 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -8,6 +8,10 @@ import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
+import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
+import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
+import FaqBase from "@/components/sections/faq/FaqBase";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Zap, Droplets, Shield, Wind, Sun, Award, Star, Tag, Users, HelpCircle, Phone, Mail } from "lucide-react";
@@ -21,8 +25,7 @@ const navItems = [
const footerColumns = [
{
- title: "Services",
- items: [
+ title: "Services", items: [
{ label: "Exterior Wash", href: "/services" },
{ label: "Interior Detail", href: "/services" },
{ label: "Wax & Coating", href: "/services" },
@@ -30,8 +33,7 @@ const footerColumns = [
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Meet Our Team", href: "#team" },
{ label: "Reviews", href: "/reviews" },
@@ -39,8 +41,7 @@ const footerColumns = [
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Book Appointment", href: "/contact" },
{ label: "Message Us", href: "https://wa.me/+15550100" },
@@ -48,8 +49,7 @@ const footerColumns = [
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Booking Terms", href: "#" },
@@ -65,7 +65,7 @@ export default function HomePage() {
borderRadius="soft"
contentWidth="mediumSmall"
sizing="largeSmall"
- background="noiseDiagonalGradient"
+ background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
@@ -91,38 +91,20 @@ export default function HomePage() {
{ text: "View Services", href: "/services" },
]}
buttonAnimation="slide-up"
- background={{ variant: "noiseDiagonalGradient" }}
+ background={{ variant: "plain" }}
carouselItems={[
{
- id: "1",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172890.jpg",
- imageAlt: "Professional car wash in action",
- },
+ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172890.jpg", imageAlt: "Professional car wash in action"},
{
- id: "2",
- imageSrc: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg?_wi=1",
- imageAlt: "Exterior car washing",
- },
+ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg", imageAlt: "Exterior car washing"},
{
- id: "3",
- imageSrc: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=1",
- imageAlt: "Interior car detailing",
- },
+ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg", imageAlt: "Interior car detailing"},
{
- id: "4",
- imageSrc: "http://img.b2bpic.net/free-photo/man-working-car-detailing-coating-car_1303-30596.jpg?_wi=1",
- imageAlt: "Professional wax coating",
- },
+ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/man-working-car-detailing-coating-car_1303-30596.jpg", imageAlt: "Professional wax coating"},
{
- id: "5",
- imageSrc: "http://img.b2bpic.net/free-photo/three-men-plastic-garbage-collecting-polluted-park_1268-20117.jpg",
- imageAlt: "Eco-friendly car wash",
- },
+ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/three-men-plastic-garbage-collecting-polluted-park_1268-20117.jpg", imageAlt: "Eco-friendly car wash"},
{
- id: "6",
- imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-her-car-outside_23-2148958788.jpg",
- imageAlt: "Express car wash service",
- },
+ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-her-car-outside_23-2148958788.jpg", imageAlt: "Express car wash service"},
]}
autoPlay={true}
autoPlayInterval={4000}
@@ -133,13 +115,8 @@ export default function HomePage() {