diff --git a/src/app/page.tsx b/src/app/page.tsx index 88c4ff2..9758604 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,73 +31,30 @@ export default function LandingPage() {
@@ -106,15 +63,8 @@ export default function LandingPage() { @@ -125,39 +75,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - id: "1", - title: "Gel Manicure", - tags: [ - "Classic", - "Long-lasting", - ], - description: "High-gloss, durable gel polish for a flawless finish.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-her-nail-art-fingernails-with-glass_23-2149820409.jpg", - imageAlt: "Woman showing her nail art on fingernails with glass", - }, - { - id: "2", - title: "Pedicure Care", - tags: [ - "Relaxing", - "Renewal", - ], - description: "Revitalize your feet with a thorough, luxurious treatment.", - imageSrc: "http://img.b2bpic.net/free-photo/caring-young-mother-kissing-babys-feet-close-up_169016-37223.jpg?_wi=2", - imageAlt: "Woman showing her nail art on fingernails with glass", - }, - { - id: "3", - title: "Custom Nail Art", - tags: [ - "Artistic", - "Unique", - ], - description: "Hand-painted intricate designs tailored to your aesthetic.", - imageSrc: "http://img.b2bpic.net/free-photo/man-with-tattoos-producing-craft-beer_23-2148110931.jpg?_wi=2", - imageAlt: "Woman showing her nail art on fingernails with glass", - }, + { id: "1", title: "Gel Manicure", tags: ["Classic", "Long-lasting"], imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-her-nail-art-fingernails-with-glass_23-2149820409.jpg", imageAlt: "Woman showing her nail art on fingernails with glass" }, + { id: "2", title: "Pedicure Care", tags: ["Relaxing", "Renewal"], imageSrc: "http://img.b2bpic.net/free-photo/caring-young-mother-kissing-babys-feet-close-up_169016-37223.jpg", imageAlt: "Woman showing her nail art on fingernails with glass" }, + { id: "3", title: "Custom Nail Art", tags: ["Artistic", "Unique"], imageSrc: "http://img.b2bpic.net/free-photo/man-with-tattoos-producing-craft-beer_23-2148110931.jpg", imageAlt: "Woman showing her nail art on fingernails with glass" }, ]} title="Our Signature Services" description="Premium treatments tailored to your unique style." @@ -170,57 +90,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "1", - title: "Gel Manicure", - price: "790 kr", - period: "approx 90min", - features: [ - "Nail shaping", - "Cuticle care", - "Gel polish", - ], - button: { - text: "Book now", - href: "#contact", - }, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-manicure-flower-close-up_23-2149311591.jpg", - imageAlt: "Beautiful manicure and flower close up", - }, - { - id: "2", - title: "Pedicure", - price: "890 kr", - period: "approx 75min", - features: [ - "Foot scrub", - "Callus treatment", - "Gel polish", - ], - button: { - text: "Book now", - href: "#contact", - }, - imageSrc: "http://img.b2bpic.net/free-photo/caring-young-mother-kissing-babys-feet-close-up_169016-37223.jpg?_wi=3", - imageAlt: "Beautiful manicure and flower close up", - }, - { - id: "3", - title: "Advanced Nail Art", - price: "+ 300 kr", - period: "additional", - features: [ - "Intricate hand-painting", - "Gem accents", - "Custom finishes", - ], - button: { - text: "Book now", - href: "#contact", - }, - imageSrc: "http://img.b2bpic.net/free-photo/man-with-tattoos-producing-craft-beer_23-2148110931.jpg?_wi=3", - imageAlt: "Beautiful manicure and flower close up", - }, + { id: "1", title: "Gel Manicure", price: "790 kr", period: "approx 90min", features: ["Nail shaping", "Cuticle care", "Gel polish"], button: { text: "Book now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-manicure-flower-close-up_23-2149311591.jpg", imageAlt: "Beautiful manicure and flower close up" }, + { id: "2", title: "Pedicure", price: "890 kr", period: "approx 75min", features: ["Foot scrub", "Callus treatment", "Gel polish"], button: { text: "Book now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/caring-young-mother-kissing-babys-feet-close-up_169016-37223.jpg", imageAlt: "Beautiful manicure and flower close up" }, + { id: "3", title: "Advanced Nail Art", price: "+ 300 kr", period: "additional", features: ["Intricate hand-painting", "Gem accents", "Custom finishes"], button: { text: "Book now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/man-with-tattoos-producing-craft-beer_23-2148110931.jpg", imageAlt: "Beautiful manicure and flower close up" }, ]} title="Price List" description="Choose your beauty investment." @@ -229,46 +101,17 @@ export default function LandingPage() {