diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx
index 52323d8..76c99f0 100644
--- a/src/app/booking/page.tsx
+++ b/src/app/booking/page.tsx
@@ -25,49 +25,27 @@ export default function LandingPage() {
@@ -80,52 +58,29 @@ export default function LandingPage() {
description="Experience the KOKO Salon difference. Select your desired service, choose your preferred barber, date, and time to secure your bespoke grooming session. We anticipate your visit and look forward to pampering you."
inputs={[
{
- name: "name",
- type: "text",
- placeholder: "Your Full Name",
- required: true,
+ name: "name", type: "text", placeholder: "Your Full Name", required: true,
},
{
- name: "email",
- type: "email",
- placeholder: "Your Email Address",
- required: true,
+ name: "email", type: "email", placeholder: "Your Email Address", required: true,
},
{
- name: "phone",
- type: "tel",
- placeholder: "Your Phone Number",
- required: false,
+ name: "phone", type: "tel", placeholder: "Your Phone Number", required: false,
},
{
- name: "service",
- type: "text",
- placeholder: "Desired Service (e.g., Skin Fade, Royal Shave)",
- required: true,
+ name: "barber", type: "text", placeholder: "Preferred Barber (Optional)", required: false,
},
{
- name: "barber",
- type: "text",
- placeholder: "Preferred Barber (Optional)",
- required: false,
+ name: "date", type: "date", placeholder: "Preferred Date", required: true,
},
{
- name: "date",
- type: "date",
- placeholder: "Preferred Date",
- required: true,
- },
- {
- name: "time",
- type: "time",
- placeholder: "Preferred Time",
- required: true,
+ name: "time", type: "time", placeholder: "Preferred Time", required: true,
},
]}
+ multiSelect={{
+ name: "serviceInterest", label: "Service Interest", options: ['Haircut', 'Shave', 'Kids Haircut', 'Groom Package'],
+ }}
textarea={{
- name: "notes",
- placeholder: "Special Requests or Notes for Your Barber",
- rows: 4,
+ name: "notes", placeholder: "Special Requests or Notes for Your Barber", rows: 4,
required: false,
}}
imageSrc="http://img.b2bpic.net/free-photo/young-business-woman-using-tablet_1303-22693.jpg"
@@ -139,87 +94,51 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c7b3e81..30b116e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -61,13 +61,14 @@ export default function LandingPage() {
@@ -165,7 +166,7 @@ export default function LandingPage() {
id: "wedding-package", badge: "Elite", badgeIcon: Crown,
price: "$500", subtitle: "Your Perfect Wedding Day Prep", buttons: [
{
- text: "Book Your Royal Groom", href: "/groom"},
+ text: "Book Your Royal Groom", href: "/groom"},
],
features: [
"Precision Haircut & Style", "Premium Skin Fade", "Expert Beard Styling", "Luxury Facial Care", "Exclusive Hair Treatment", "VIP Service & Private Suite"],
@@ -174,7 +175,7 @@ export default function LandingPage() {
id: "premium-package", badge: "Premium", badgeIcon: Award,
price: "$250", subtitle: "Elevate Your Everyday Look", buttons: [
{
- text: "Choose Premium Plan", href: "/groom"},
+ text: "Choose Premium Plan", href: "/groom"},
],
features: [
"Precision Haircut", "Classic Shave or Beard Trim", "Hair Styling", "Invigorating Face Mask"],
@@ -207,7 +208,7 @@ export default function LandingPage() {
{
id: "5", name: "Sara Ali", handle: "@SaraMomLife", testimonial: "As a parent, I appreciate the comfort and skill for kids' haircuts. My little one always leaves with a smile and a trendy cut. Thank you, KOKO!", imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-trimmer_613910-5073.jpg", imageAlt: "Sara Ali"},
]}
- title="What Our Valued Clients Say"
+ title="Hear Their KOKO Salon Transformations"
description="Hear from gentlemen and parents who have experienced the KOKO Salon difference. Exceptional service and impeccable style, consistently delivered."
buttons={[
{
@@ -299,4 +300,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file