Update src/app/page.tsx
This commit is contained in:
@@ -46,8 +46,8 @@ export default function LandingPage() {
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Book Appointment", href: "#contact" },
|
||||
{ text: "Learn More", href: "#features" }
|
||||
{ text: "Book Appointment", href: "#contact", onClick: () => {} },
|
||||
{ text: "Learn More", href: "#features", onClick: () => {} }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-client-getting-her-hair-dried-hairdresser_23-2150771293.jpg"
|
||||
@@ -91,13 +91,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "haircut", title: "Professional Haircuts", description: "Expert styling from skilled stylists who understand your face shape and style preferences. Every cut is personalized for your unique beauty.", tag: "Precision", imageSrc: "http://img.b2bpic.net/free-photo/executive-is-always-touch-with-her-clients_329181-15267.jpg", imageAlt: "Professional haircut service", buttons: [{ text: "Book Now", href: "#contact" }]
|
||||
id: "haircut", title: "Professional Haircuts", description: "Expert styling from skilled stylists who understand your face shape and style preferences. Every cut is personalized for your unique beauty.", tag: "Precision", imageSrc: "http://img.b2bpic.net/free-photo/executive-is-always-touch-with-her-clients_329181-15267.jpg", imageAlt: "Professional haircut service", buttons: [{ text: "Book Now", href: "#contact", onClick: () => {} }]
|
||||
},
|
||||
{
|
||||
id: "treatment", title: "Hair Treatments & Therapy", description: "Revitalize your hair with our premium treatment options. From hydration therapy to keratin treatments, experience luxury wellness.", tag: "Wellness", imageSrc: "http://img.b2bpic.net/free-photo/man-giving-himself-scalp-massage_23-2151307466.jpg", imageAlt: "Hair treatment therapy service", buttons: [{ text: "Book Now", href: "#contact" }]
|
||||
id: "treatment", title: "Hair Treatments & Therapy", description: "Revitalize your hair with our premium treatment options. From hydration therapy to keratin treatments, experience luxury wellness.", tag: "Wellness", imageSrc: "http://img.b2bpic.net/free-photo/man-giving-himself-scalp-massage_23-2151307466.jpg", imageAlt: "Hair treatment therapy service", buttons: [{ text: "Book Now", href: "#contact", onClick: () => {} }]
|
||||
},
|
||||
{
|
||||
id: "makeup", title: "Beauty & Makeup", description: "Professional makeup services for all occasions. Our beauty experts enhance your natural features with precision and artistry.", tag: "Artistry", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylist-applying-powder-model_23-2147783867.jpg", imageAlt: "Professional makeup application", buttons: [{ text: "Book Now", href: "#contact" }]
|
||||
id: "makeup", title: "Beauty & Makeup", description: "Professional makeup services for all occasions. Our beauty experts enhance your natural features with precision and artistry.", tag: "Artistry", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylist-applying-powder-model_23-2147783867.jpg", imageAlt: "Professional makeup application", buttons: [{ text: "Book Now", href: "#contact", onClick: () => {} }]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -162,6 +162,10 @@ export default function LandingPage() {
|
||||
{ id: "6", title: "Do you offer group bookings or package deals?", content: "Absolutely! We offer special packages for group bookings, events, and wedding parties. Contact us for customized quotes and arrangement options." }
|
||||
]}
|
||||
faqsAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "#contact", onClick: () => {} }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
animationType="smooth"
|
||||
ariaLabel="FAQ section"
|
||||
/>
|
||||
@@ -182,6 +186,7 @@ export default function LandingPage() {
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get in Touch"
|
||||
termsText="By submitting, you agree to our Terms and Privacy Policy."
|
||||
onSubmit={(email) => console.log('Email submitted:', email)}
|
||||
ariaLabel="Contact section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user