Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b6db0bd08a | |||
| 73de6ba85d | |||
| c8b8c1261e | |||
| 94fc406fca | |||
| 53a79bad4f | |||
| 79e5e428f1 | |||
| 2808db7e51 |
@@ -8,9 +8,9 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import { Award, CheckCircle, Heart, MapPin, Shield, Sparkles, Star, Users, Zap } from 'lucide-react';
|
import { Award, CheckCircle, Heart, MapPin, Shield, Sparkles, Star, Users, Zap, Phone, MessageCircle } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -33,6 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
|
{ name: "Location", id: "contact" },
|
||||||
{ name: "FAQ", id: "faq" }
|
{ name: "FAQ", id: "faq" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Appointment", href: "#contact" }}
|
button={{ text: "Book Appointment", href: "#contact" }}
|
||||||
@@ -191,17 +192,29 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
tag="Get in Touch"
|
title="Visit Our Location"
|
||||||
title="Visit Us Today"
|
description="Unit 12, First Floor, Al Barsha Mall, 23rd Street, Al Barsha 2, Dubai — Beside Al Barsha Pond Park. We're open to welcome you with authentic Japanese hospitality."
|
||||||
description="Unit 12, First Floor, Al Barsha Mall | 23rd Street, Al Barsha 2, Dubai | Beside Al Barsha Pond Park\n\nPhone: +971 4 340 7171\nWhatsApp: Available\n\nSun–Thu: 10:15 AM – 7:00 PM\nFri–Sat: 12:15 PM – 9:00 PM"
|
mediaPosition="left"
|
||||||
tagIcon={MapPin}
|
mediaAnimation="blur-reveal"
|
||||||
tagAnimation="slide-up"
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773735263329-p8fqropj.jpg"
|
||||||
buttonText="Book Appointment"
|
imageAlt="Ginza Beauty Salon Location"
|
||||||
termsText="By booking with us, you agree to our terms and confirm your appointment details will be used to contact you."
|
inputs={[
|
||||||
|
{
|
||||||
|
name: "name", type: "text", placeholder: "Your Name", required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "phone", type: "tel", placeholder: "Your Phone Number", required: true
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
buttonText="Get Appointment Info"
|
||||||
|
onSubmit={(data) => {
|
||||||
|
const phone = data.phone.replace(/\D/g, '');
|
||||||
|
const name = encodeURIComponent(data.name);
|
||||||
|
const message = encodeURIComponent(`Hi! I'm ${data.name} and I'd like to book an appointment at Ginza Beauty.`);
|
||||||
|
window.open(`https://wa.me/971434071171?text=${message}`, '_blank');
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -226,7 +239,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Location", href: "#contact" },
|
||||||
{ label: "Aftercare Guide", href: "#" }
|
{ label: "Aftercare Guide", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user