diff --git a/src/app/page.tsx b/src/app/page.tsx index e21e8b2..8ead6e9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import TextAbout from '@/components/sections/about/TextAbout'; +import { Scissors, Shield, Zap, User } from 'lucide-react'; export default function LandingPage() { return ( @@ -29,25 +30,15 @@ export default function LandingPage() { @@ -56,108 +47,58 @@ export default function LandingPage() {
@@ -166,7 +107,6 @@ export default function LandingPage() { @@ -177,55 +117,28 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "haircut", - badge: "Popular", - price: "$15", - subtitle: "Essential maintenance.", - buttons: [ + id: "haircut", badge: "Popular", price: "$15", subtitle: "Essential maintenance.", buttons: [ { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, ], features: [ - "Classic cut", - "Neck shave", - "Styling", - ], + "Classic cut", "Neck shave", "Styling"], }, { - id: "beard", - badge: "Standard", - price: "$10", - subtitle: "For sharp edges.", - buttons: [ + id: "beard", badge: "Standard", price: "$10", subtitle: "For sharp edges.", buttons: [ { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, ], features: [ - "Beard shape up", - "Hot towel", - "Beard oil", - ], + "Beard shape up", "Hot towel", "Beard oil"], }, { - id: "styling", - badge: "Premium", - price: "$20", - subtitle: "Full groom experience.", - buttons: [ + id: "styling", badge: "Premium", price: "$20", subtitle: "Full groom experience.", buttons: [ { - text: "Book Now", - href: "#contact", - }, + text: "Book Now", href: "#contact"}, ], features: [ - "Haircut", - "Beard trim", - "Scalp massage", - ], + "Haircut", "Beard trim", "Scalp massage"], }, ]} title="Services & Pricing" @@ -239,28 +152,16 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Modern Chairs", - description: "High-end comfort for every customer.", - imageSrc: "http://img.b2bpic.net/free-photo/male-barber-sitting-his-shop_23-2149186516.jpg", - buttonIcon: "Scissors", + title: "Modern Chairs", description: "High-end comfort for every customer.", imageSrc: "http://img.b2bpic.net/free-photo/male-barber-sitting-his-shop_23-2149186516.jpg", buttonIcon: Scissors, }, { - title: "Clean Environment", - description: "We prioritize hygiene and standards.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-getting-his-hair-washed_23-2149220571.jpg", - buttonIcon: "Shield", + title: "Clean Environment", description: "We prioritize hygiene and standards.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-getting-his-hair-washed_23-2149220571.jpg", buttonIcon: Shield, }, { - title: "Expert Styling", - description: "Professional tools for every style.", - imageSrc: "http://img.b2bpic.net/free-photo/barber-shop-retro-vintage-style_1150-17931.jpg", - buttonIcon: "Zap", + title: "Expert Styling", description: "Professional tools for every style.", imageSrc: "http://img.b2bpic.net/free-photo/barber-shop-retro-vintage-style_1150-17931.jpg", buttonIcon: Zap, }, { - title: "Community Focus", - description: "Dedicated to Montreal locals.", - imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-covering-man39s-face-with-warm-wet-towel_651396-2980.jpg?_wi=3", - buttonIcon: "User", + title: "Community Focus", description: "Dedicated to Montreal locals.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-covering-man39s-face-with-warm-wet-towel_651396-2980.jpg", buttonIcon: User, }, ]} title="Modern Shop Experience" @@ -272,8 +173,7 @@ export default function LandingPage() {