3 Commits

Author SHA1 Message Date
e3573bcd69 Update src/app/page.tsx 2026-03-09 03:26:16 +00:00
ac4acd0bcb Update src/app/page.tsx 2026-03-09 03:25:36 +00:00
a7da61d0e0 Merge version_2 into main
Merge version_2 into main
2026-03-09 03:22:52 +00:00

View File

@@ -16,11 +16,11 @@ import { Sparkles, Heart, Star, DollarSign, HelpCircle, Clock, Users } from "luc
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "#services" },
{ name: "About", id: "/about" }, { name: "About", id: "#about" },
{ name: "Testimonials", id: "/testimonials" }, { name: "Testimonials", id: "#testimonials" },
{ name: "Pricing", id: "/pricing" }, { name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "#contact" },
]; ];
return ( return (
@@ -41,7 +41,7 @@ export default function HomePage() {
brandName="Happy Feet" brandName="Happy Feet"
navItems={navItems} navItems={navItems}
button={{ button={{
text: "Book Appointment", href: "/contact" text: "Book Appointment", href: "#contact"
}} }}
/> />
</div> </div>
@@ -61,7 +61,7 @@ export default function HomePage() {
tagIcon={Sparkles} tagIcon={Sparkles}
buttons={[ buttons={[
{ text: "Call Now", href: "tel:(817) 438-7688" }, { 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" imageSrc="http://img.b2bpic.net/free-photo/spa-massage-concept-with-feet_23-2147821122.jpg"
imageAlt="Serene spa massage therapy environment" imageAlt="Serene spa massage therapy environment"
@@ -75,23 +75,33 @@ export default function HomePage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Foot Reflexology Massage", description: title: "Luxury Combination 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" "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?_wi=1", imageAlt: "Luxury combination massage therapy"
}, },
{ {
id: 2, id: 2,
title: "Full Body Massage", description: title: "Luxury Oil Massage & Hot Stone", 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" "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, id: 3,
title: "Back & Shoulder Massage", description: title: "Full Body 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" "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, id: 4,
title: "Combo Massage Packages", description: title: "Thailand Massage", 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" "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?_wi=2", 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" title="Our Complete Service Menu"
@@ -111,7 +121,7 @@ export default function HomePage() {
]} ]}
showBorder={true} showBorder={true}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[{ text: "Learn More About Us", href: "/about" }]} buttons={[{ text: "Learn More About Us", href: "#about" }]}
/> />
</div> </div>
@@ -154,37 +164,52 @@ export default function HomePage() {
<PricingCardFive <PricingCardFive
plans={[ plans={[
{ {
id: "30-minute", tag: "Quick Refresh", price: "$35", period: "/session", description: id: "luxury-combo", tag: "Best Value", tagIcon: Star,
"Perfect for a quick reset. Enjoy a focused 30-minute massage to relieve tension and rejuvenate.", button: { text: "Book Now", href: "/contact" }, price: "$120", period: "/session", description:
"The ultimate spa experience. Luxury combination of foot reflexology and full body massage for complete restoration and deep relaxation.", button: { text: "Book Now", href: "#contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"30-minute professional massage", "Choice of foot reflexology or targeted massage", "Calming spa environment", "Premium oils and products" "Foot reflexology (30 minutes)", "Full body massage (45 minutes)", "Total session time: 75 minutes", "Premium spa amenities", "Aromatherapy option", "Relaxation room access", "Personalized wellness plan"
], ],
}, },
{ {
id: "60-minute", tag: "Popular Choice", tagIcon: Star, id: "luxury-oil-hot-stone", tag: "Premium", price: "$95-$120", period: "/session", description:
price: "$60", period: "/session", description: "Premium massage therapy using luxurious oils combined with heated stones to deeply relax muscles and enhance circulation.", button: { text: "Book Now", href: "#contact" },
"Our most popular option. Enjoy a full hour of therapeutic massage to melt away stress and pain.", button: { text: "Book Now", href: "/contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"Full 60-minute therapeutic massage", "Foot reflexology or full body massage", "Aromatherapy experience", "Wellness consultation", "Post-massage relaxation" "60-75 minute luxury massage", "Premium therapeutic oils", "Hot stone therapy", "Deep muscle relaxation", "Enhanced circulation", "Aromatherapy experience", "Post-massage wellness guidance"
], ],
}, },
{ {
id: "90-minute", tag: "Ultimate Wellness", price: "$85", period: "/session", description: id: "full-body", tag: "Popular", tagIcon: Star,
"The ultimate spa experience. Ninety minutes of comprehensive massage for complete restoration and deep relaxation.", button: { text: "Book Now", href: "/contact" }, price: "$60-$85", period: "/session", description:
"Comprehensive massage therapy addressing tension throughout your entire body for enhanced relaxation and deep wellness.", button: { text: "Book Now", href: "#contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"Extended 90-minute therapeutic massage", "Foot reflexology (30 min) + body massage (45 min)", "Premium aromatherapy treatment", "Hot stone massage option", "Post-massage wellness guidance", "Relaxation room access" "60-90 minute full body massage", "Complete muscle tension relief", "Improved flexibility", "Aromatherapy experience", "Wellness consultation", "Post-massage relaxation", "Professional therapist care"
], ],
}, },
{ {
id: "combo-package", tag: "Best Value", price: "$120", period: "/package", description: id: "thailand", tag: "Specialty", price: "$65-$90", period: "/session", description:
"Combine the best of both worlds. Foot reflexology paired with full body or targeted massage for complete wellness.", button: { text: "Book Now", href: "/contact" }, "Traditional Thai massage combining stretching and acupressure techniques to improve flexibility and energy flow throughout the body.", button: { text: "Book Now", href: "#contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"Foot reflexology (30 minutes)", "Full body or targeted massage (45 minutes)", "Total session time: 75 minutes", "Premium spa amenities", "Aromatherapy and hot stone options", "Relaxation room access", "Personalized wellness plan", "Best value compared to individual services" "60-90 minute traditional Thai massage", "Acupressure techniques", "Flexibility improvement", "Energy flow enhancement", "Authentic Thai therapy methods", "Deep stretching and release", "Holistic wellness benefits"
],
},
{
id: "back-massage", tag: "Quick Relief", price: "$40-$55", period: "/session", description:
"Targeted therapy focusing on upper body tension, perfect for relieving stress-related tightness and improving posture.", button: { text: "Book Now", href: "#contact" },
featuresTitle: "What's Included:", features: [
"30-45 minute targeted massage", "Upper body tension relief", "Stress reduction", "Posture improvement", "Shoulder and neck care", "Professional technique", "Customized pressure levels"
],
},
{
id: "foot-massage", tag: "Signature", price: "$35-$60", period: "/session", description:
"Traditional reflexology targeting pressure points on the feet to improve circulation, reduce pain, and promote natural healing.", button: { text: "Book Now", href: "#contact" },
featuresTitle: "What's Included:", features: [
"30-60 minute foot reflexology", "Pressure point targeting", "Improved circulation", "Pain reduction", "Natural healing promotion", "Relaxation benefits", "Whole body wellness impact"
], ],
}, },
]} ]}
animationType="slide-up" animationType="slide-up"
title="Transparent, Affordable Pricing" title="Our Service Pricing"
description="Choose the massage package that best fits your needs. All pricing includes premium service in our serene spa environment. Walk-ins and same-day appointments always welcome! Discounts available for package deals and regular clients." description="Choose the massage package that best fits your needs. All pricing includes premium service in our serene spa environment. Walk-ins and same-day appointments always welcome! Discounts available for package deals and regular clients."
tag="Pricing" tag="Pricing"
tagIcon={DollarSign} tagIcon={DollarSign}
@@ -221,8 +246,8 @@ export default function HomePage() {
"We're open daily from 10:00 AM to 10:00 PM at 2105 Harwood Rd #225, Bedford, TX 76021. Easy parking available. Open 7 days a week, including holidays for your convenience." "We're open daily from 10:00 AM to 10:00 PM at 2105 Harwood Rd #225, Bedford, TX 76021. Easy parking available. Open 7 days a week, including holidays for your convenience."
}, },
{ {
id: "7", title: "What are your service durations and pricing?", content: id: "7", title: "What are your service offerings?", content:
"We offer flexible service options: 30-minute quick refresh ($35), 60-minute popular choice ($60), 90-minute ultimate wellness ($85), and our best-value 75-minute combo package ($120). All services include professional therapy, premium oils, and our calming spa environment." "We offer comprehensive massage and reflexology services including Luxury Combination Massage ($120), Luxury Oil Massage & Hot Stone ($95-$120), Full Body Massage ($60-$85), Thailand Massage ($65-$90), Back Massage ($40-$55), and Foot Massage ($35-$60). All services are customized to your specific wellness needs."
}, },
{ {
id: "8", title: "Do you offer discounts for package deals or regular clients?", content: id: "8", title: "Do you offer discounts for package deals or regular clients?", content:
@@ -258,7 +283,7 @@ export default function HomePage() {
name: "phone", type: "tel", placeholder: "(817) 438-7688", required: true, name: "phone", type: "tel", placeholder: "(817) 438-7688", required: true,
}, },
{ {
name: "service", type: "text", placeholder: "Preferred Service (e.g., 60-min Massage, Foot Reflexology)", required: false, name: "service", type: "text", placeholder: "Preferred Service (e.g., Luxury Combo, Thailand Massage, Foot Massage)", required: false,
}, },
]} ]}
textarea={{ textarea={{