diff --git a/src/app/page.tsx b/src/app/page.tsx index f29c900..306087d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -100,21 +100,15 @@ export default function LandingPage() { gridVariant="one-large-left-three-stacked-right" useInvertedBackground={true} products={[ - { - id: "g1", name: "Reception Area", price: "Atmosphere", imageSrc: "http://img.b2bpic.net/free-photo/skies-snowboard-lounge-area_482257-76730.jpg"}, - { - id: "g2", name: "Styling Station", price: "Luxury", imageSrc: "http://img.b2bpic.net/free-photo/luxury-interior-decor-with-natural-lighting-ambiance-generated-by-ai_188544-28046.jpg"}, - { - id: "g3", name: "Luminous Lighting", price: "Details", imageSrc: "http://img.b2bpic.net/free-photo/flowers-near-fuchsia-eggs_23-2147754680.jpg"}, - { - id: "g4", name: "Treatment Suite", price: "Relaxation", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-young-woman-sitting-modern-cafe_171337-17121.jpg"}, - { - id: "g5", name: "Hair Studio", price: "Modern", imageSrc: "http://img.b2bpic.net/free-photo/close-up-graphic-pencils-stand-standing-table-creativity-school-studio-background-diverse-team-drawing-vase-sketch-canvas-working-sketching-technique-new-years-resolutions_482257-38999.jpg"}, - { - id: "g6", name: "Beauty Bar", price: "Sophistication", imageSrc: "http://img.b2bpic.net/free-photo/details-decoration-modern-beauty-parlor-table-mirror-flowerpot-lamp-stylish-decor-concept_197531-31477.jpg"}, + { id: "g1", name: "Signature Balayage", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-her-hair-dyed-beauty-salon_23-2149167372.jpg" }, + { id: "g2", name: "Modern Cut", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-black-sweater-standing-posing_114579-58755.jpg" }, + { id: "g3", name: "Elegant Blowout", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/woman-having-consultation-with-hairdresser_23-2147769876.jpg" }, + { id: "g4", name: "Custom Styling", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg" }, + { id: "g5", name: "Bridal Design", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg" }, + { id: "g6", name: "Salon Interior", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/luxury-interior-decor-with-natural-lighting-ambiance-generated-by-ai_188544-28046.jpg" } ]} title="Our Studio Gallery" - description="A glimpse into our luxurious San Diego space." + description="Explore the artistry of our San Diego studio." /> @@ -122,20 +116,11 @@ export default function LandingPage() { ({ + id: String(i + 1), + name: "Valued Client", date: "2024", title: "5.0 Rating", quote: "Absolute perfection! This is the most luxurious salon experience in San Diego. Highly recommend!", tag: "5.0 Stars", avatarSrc: "http://img.b2bpic.net/free-photo/joyful-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15168.jpg", imageSrc: "http://img.b2bpic.net/free-photo/woman-having-consultation-with-hairdresser_23-2147769876.jpg"}))} title="What Our Clients Say" - description="Excellence defined by those who visit us." + description="Rated 5.0 out of 5 stars based on 7 reviews." /> @@ -163,12 +148,12 @@ export default function LandingPage() { useInvertedBackground={false} background={{ variant: "plain"}} - tag="Visit Us" + tag="Contact Us" title="Begin Your Transformation" - description="Secure your spot at San Diego's premier beauty studio today." + description="Open Daily: 12:00 PM – 3:00 PM. Contact us to book your premium session today." buttons={[ - { - text: "Book Now", href: "#"}, + { text: "Book Now", href: "#" }, + { text: "Call Now", href: "tel:+15551234567" } ]} /> @@ -179,29 +164,23 @@ export default function LandingPage() { columns={[ { title: "Services", items: [ - { - label: "Haircuts", href: "#services"}, - { - label: "Coloring", href: "#services"}, - { - label: "Styling", href: "#services"}, + { label: "Haircuts", href: "#services" }, + { label: "Coloring", href: "#services" }, + { label: "Styling", href: "#services" }, ], }, { - title: "Company", items: [ - { - label: "About Us", href: "#about"}, - { - label: "Reviews", href: "#testimonials"}, - { - label: "Contact", href: "#contact"}, + title: "Contact", items: [ + { label: "123 San Diego Ave", href: "#" }, + { label: "(555) 123-4567", href: "tel:+15551234567" }, + { label: "Open: 12PM-3PM", href: "#" }, ], }, ]} - copyrightText="© 2024 The Parlour Salon. All rights reserved." + copyrightText="© 2024 The Parlour. Mobile-friendly beauty." /> ); -} \ No newline at end of file +}