Merge version_2 into main #4
@@ -11,6 +11,10 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { MapPin, Phone, Scissors, Star, Sparkles } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleCallNow = () => {
|
||||
window.location.href = 'tel:(206)327-9498';
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -34,7 +38,7 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Now", href: "tel:(206)327-9498"
|
||||
text: "Call Us Now", onClick: handleCallNow
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
@@ -48,7 +52,7 @@ export default function LandingPage() {
|
||||
tag="Est. Seattle"
|
||||
tagIcon={Scissors}
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:(206)327-9498" },
|
||||
{ text: "Call Now", onClick: handleCallNow },
|
||||
{ text: "Book Appointment", href: "#contact" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-bearded-hipster-male-with-stylish-haircut-sits-chair-hairdresser-s-salon_613910-13412.jpg"
|
||||
@@ -90,7 +94,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "basic", price: "$25", name: "Standard Haircut", badge: "Popular", badgeIcon: Star,
|
||||
buttons: [
|
||||
{ text: "Book Now", href: "tel:(206)327-9498" },
|
||||
{ text: "Book Now", onClick: handleCallNow },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
],
|
||||
features: [
|
||||
@@ -100,7 +104,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "premium", price: "$40", name: "Beard + Haircut", badge: "Best Value", badgeIcon: Sparkles,
|
||||
buttons: [
|
||||
{ text: "Book Now", href: "tel:(206)327-9498" },
|
||||
{ text: "Book Now", onClick: handleCallNow },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
],
|
||||
features: [
|
||||
@@ -109,7 +113,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "deluxe", price: "$60", name: "Premium Experience", buttons: [
|
||||
{ text: "Book Now", href: "tel:(206)327-9498" },
|
||||
{ text: "Book Now", onClick: handleCallNow },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
],
|
||||
features: [
|
||||
|
||||
Reference in New Issue
Block a user