Update src/app/page.tsx
This commit is contained in:
@@ -69,10 +69,8 @@ export default function LandingPage() {
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/car-surface-water-drops-waxed_181624-59940.jpg", imageAlt: "Car wax protection" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "#booking"},
|
||||
{
|
||||
text: "View Packages", href: "#services"},
|
||||
{ text: "Book Now", href: "#booking" },
|
||||
{ text: "View Packages", href: "#services" },
|
||||
]}
|
||||
carouselPosition="right"
|
||||
marqueeItems={[
|
||||
@@ -103,26 +101,22 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p1", tag: "Essential", price: "$100", period: "Exterior", description: "Quick refresh to restore the exterior shine.", featuresTitle: "Includes:", features: [
|
||||
"Hand wash", "Rim cleaning", "Tire shine", "Window cleaning"],
|
||||
button: {
|
||||
text: "Book Now"},
|
||||
button: { text: "Book Now" },
|
||||
},
|
||||
{
|
||||
id: "p2", tag: "Core", price: "$160", period: "Interior", description: "Deep clean for your car's sanctuary.", featuresTitle: "Includes:", features: [
|
||||
"Vacuuming", "Seat dusting", "Dashboard cleaning", "Deep surface sanitizing"],
|
||||
button: {
|
||||
text: "Book Now"},
|
||||
button: { text: "Book Now" },
|
||||
},
|
||||
{
|
||||
id: "p3", tag: "Comprehensive", price: "$250", period: "Full", description: "The perfect balance of interior and exterior care.", featuresTitle: "Includes:", features: [
|
||||
"Full exterior wash", "Full interior deep clean", "Leather cleaning", "Window treatment"],
|
||||
button: {
|
||||
text: "Book Now"},
|
||||
button: { text: "Book Now" },
|
||||
},
|
||||
{
|
||||
id: "p4", tag: "Signature", price: "$350", period: "Premium", description: "The ultimate detailing experience for perfectionists.", featuresTitle: "Includes:", features: [
|
||||
"Engine bay detail", "Full exterior polish", "Leather conditioner", "Full interior extraction"],
|
||||
button: {
|
||||
text: "Book Premium Detail"},
|
||||
button: { text: "Book Premium Detail" },
|
||||
},
|
||||
]}
|
||||
title="Our Detailing Packages"
|
||||
@@ -218,18 +212,10 @@ export default function LandingPage() {
|
||||
title="Book Your Detail"
|
||||
description="Ready for a premium detailing session? Fill out the form below."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
{
|
||||
name: "vehicle", type: "text", placeholder: "Vehicle Type", required: true,
|
||||
},
|
||||
{
|
||||
name: "date", type: "date", placeholder: "Preferred Date", required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
{ name: "vehicle", type: "text", placeholder: "Vehicle Type", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Preferred Date", required: true },
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "package", label: "Select Package", options: [
|
||||
@@ -257,26 +243,20 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Gallery", href: "#gallery"},
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Gallery", href: "#gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Packages", href: "#services"},
|
||||
{
|
||||
label: "Add-Ons", href: "#add-ons"},
|
||||
{ label: "Packages", href: "#services" },
|
||||
{ label: "Add-Ons", href: "#add-ons" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
{
|
||||
label: "Booking", href: "#booking"},
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Booking", href: "#booking" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user