diff --git a/src/app/page.tsx b/src/app/page.tsx index 871d352..9237b4e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import { Star, Car, History } from 'lucide-react'; +import { Nunito } from 'next/font/google'; const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], @@ -67,7 +68,7 @@ export default function Page() { @@ -95,12 +96,12 @@ export default function Page() { title="Choose Your Perfect Wash Package" description="Select from our range of packages designed to give your car the care it deserves, all at competitive prices." products={[ - { id: "basic", name: "Basic Clean", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg?_wi=1", imageAlt: "Basic car wash" }, - { id: "premium", name: "Premium Shine", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg?_wi=1", imageAlt: "Premium car wash" }, - { id: "deluxe", name: "Deluxe Glow", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg?_wi=1", imageAlt: "Deluxe car wash" }, - { id: "ultimate", name: "Ultimate Protection", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg?_wi=2", imageAlt: "Ultimate car wash" }, - { id: "truckwash", name: "Truck Bay Wash", price: "Varies", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg?_wi=2", imageAlt: "Truck wash bay" }, - { id: "custom", name: "Custom Detailing", price: "Quote", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg?_wi=2", imageAlt: "Custom auto detailing" } + { id: "basic", name: "Basic Clean", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg", imageAlt: "Basic car wash" }, + { id: "premium", name: "Premium Shine", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg", imageAlt: "Premium car wash" }, + { id: "deluxe", name: "Deluxe Glow", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg", imageAlt: "Deluxe car wash" }, + { id: "ultimate", name: "Ultimate Protection", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg", imageAlt: "Ultimate car wash" }, + { id: "truckwash", name: "Truck Bay Wash", price: "Varies", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg", imageAlt: "Truck wash bay" }, + { id: "custom", name: "Custom Detailing", price: "Quote", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg", imageAlt: "Custom auto detailing" } ]} carouselMode="buttons" gridVariant="three-columns-all-equal-width"