diff --git a/src/app/page.tsx b/src/app/page.tsx index d1ff439..13df137 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,11 +16,11 @@ import { Sparkles, Heart, Star, DollarSign, HelpCircle, Clock, Users } from "luc export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "About", id: "/about" }, - { name: "Testimonials", id: "/testimonials" }, - { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "/contact" }, + { name: "Services", id: "#services" }, + { name: "About", id: "#about" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Pricing", id: "#pricing" }, + { name: "Contact", id: "#contact" }, ]; return ( @@ -41,7 +41,7 @@ export default function HomePage() { brandName="Happy Feet" navItems={navItems} button={{ - text: "Book Appointment", href: "/contact" + text: "Book Appointment", href: "#contact" }} /> @@ -61,7 +61,7 @@ export default function HomePage() { tagIcon={Sparkles} buttons={[ { text: "Call Now", href: "tel:(817) 438-7688" }, - { text: "Book Appointment", href: "/contact" }, + { text: "Book Appointment", href: "#contact" }, ]} imageSrc="http://img.b2bpic.net/free-photo/spa-massage-concept-with-feet_23-2147821122.jpg" imageAlt="Serene spa massage therapy environment" @@ -75,23 +75,33 @@ export default function HomePage() { features={[ { id: 1, - title: "Foot Reflexology Massage", description: - "Traditional reflexology targeting pressure points on the feet to improve circulation, reduce pain, and promote natural healing throughout the body. Duration: 30-60 minutes. Price: $35-$60 per session.", imageSrc: "http://img.b2bpic.net/free-photo/kid-dance-class-with-teatcher_1157-47395.jpg", imageAlt: "Professional foot reflexology massage therapy" + title: "Luxury Combination Massage", description: + "Experience the ultimate spa experience blending foot reflexology with full body massage for complete restoration. Duration: 75 minutes. Price: $120 per session.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-spa_23-2150911779.jpg", imageAlt: "Luxury combination massage therapy" }, { id: 2, - title: "Full Body Massage", description: - "Comprehensive massage therapy addressing tension throughout your entire body, enhancing relaxation, flexibility, and promoting deep wellness. Duration: 60-90 minutes. Price: $60-$85 per session.", imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-woman-bed_23-2147816958.jpg", imageAlt: "Full body therapeutic massage treatment" + title: "Luxury Oil Massage & Hot Stone", description: + "Premium massage therapy using luxurious oils combined with heated stones to deeply relax muscles and enhance circulation. Duration: 60-75 minutes. Price: $95-$120 per session.", imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-woman-bed_23-2147816958.jpg", imageAlt: "Luxury oil and hot stone massage treatment" }, { id: 3, - title: "Back & Shoulder Massage", description: - "Targeted therapy focusing on upper body tension, perfect for relieving stress-related tightness and improving posture and comfort. Duration: 30-45 minutes. Price: $40-$55 per session.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-getting-massage_23-2150649769.jpg", imageAlt: "Back and shoulder massage therapy" + title: "Full Body Massage", description: + "Comprehensive massage therapy addressing tension throughout your entire body, enhancing relaxation, flexibility, and promoting deep wellness. Duration: 60-90 minutes. Price: $60-$85 per session.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-getting-massage_23-2150649769.jpg", imageAlt: "Full body therapeutic massage treatment" }, { id: 4, - title: "Combo Massage Packages", description: - "Experience the ultimate relaxation with our combination packages blending foot reflexology with full or partial body massage for complete restoration. Duration: 75 minutes. Price: $120 per package.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-spa_23-2150911779.jpg", imageAlt: "Combo massage package wellness service" + title: "Thailand Massage", description: + "Traditional Thai massage combining stretching and acupressure techniques to improve flexibility and energy flow. Duration: 60-90 minutes. Price: $65-$90 per session.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Agt7noQ5AYZgbSW1ng3UX7Hjhw/uploaded-1773026689785-rrw8d914.jpg", imageAlt: "Traditional Thailand massage therapy" + }, + { + id: 5, + title: "Back Massage", description: + "Targeted therapy focusing on upper body tension, perfect for relieving stress-related tightness and improving posture and comfort. Duration: 30-45 minutes. Price: $40-$55 per session.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-spa_23-2150911779.jpg", imageAlt: "Back massage therapy treatment" + }, + { + id: 6, + title: "Foot Massage", description: + "Traditional reflexology targeting pressure points on the feet to improve circulation, reduce pain, and promote natural healing throughout the body. Duration: 30-60 minutes. Price: $35-$60 per session.", imageSrc: "http://img.b2bpic.net/free-photo/kid-dance-class-with-teatcher_1157-47395.jpg", imageAlt: "Professional foot reflexology massage therapy" }, ]} title="Our Complete Service Menu" @@ -111,7 +121,7 @@ export default function HomePage() { ]} showBorder={true} useInvertedBackground={false} - buttons={[{ text: "Learn More About Us", href: "/about" }]} + buttons={[{ text: "Learn More About Us", href: "#about" }]} /> @@ -154,37 +164,52 @@ export default function HomePage() {