Update src/app/services/page.tsx

This commit is contained in:
2026-03-11 23:14:09 +00:00
parent cb7fd2ff32
commit af2591f1e8

View File

@@ -33,9 +33,7 @@ export default function ServicesPage() {
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Appointment",
href: "/appointment",
}}
text: "Book Appointment", href: "/appointment"}}
/>
</div>
@@ -49,48 +47,27 @@ export default function ServicesPage() {
animationType="slide-up"
features={[
{
id: "1",
title: "Suit Tailoring",
description:
"Perfect fit for your business wardrobe. Expert jacket, pants, and vest alterations.",
tag: "Professional",
imageSrc:
"http://img.b2bpic.net/free-photo/fashion-designer-taking-measurement-blue-fabric-with-measuring-tape-table_23-2148180320.jpg?_wi=2",
buttons: [
id: "1", title: "Suit Tailoring", description:
"Perfect fit for your business wardrobe. Expert jacket, pants, and vest alterations.", tag: "Professional", imageSrc:
"http://img.b2bpic.net/free-photo/fashion-designer-taking-measurement-blue-fabric-with-measuring-tape-table_23-2148180320.jpg?_wi=2", buttons: [
{
text: "Schedule Now",
href: "/appointment",
},
text: "Schedule Now", href: "/appointment"},
],
},
{
id: "2",
title: "Dress Alterations",
description:
"Hemming, taking in, letting out, and custom adjustments for any occasion.",
tag: "Elegant",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-hand-holding-cardboard_23-2148875319.jpg?_wi=2",
buttons: [
id: "2", title: "Dress Alterations", description:
"Hemming, taking in, letting out, and custom adjustments for any occasion.", tag: "Elegant", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-hand-holding-cardboard_23-2148875319.jpg?_wi=2", buttons: [
{
text: "Schedule Now",
href: "/appointment",
},
text: "Schedule Now", href: "/appointment"},
],
},
{
id: "3",
title: "Wedding Dress Alterations",
description:
"Premium service for your special day. Custom fitting and delicate fabric expertise.",
tag: "Special Occasions",
imageSrc:
"http://img.b2bpic.net/free-photo/women-making-preparations-wedding_23-2149184343.jpg?_wi=2",
buttons: [
id: "3", title: "Wedding Dress Alterations", description:
"Premium service for your special day. Custom fitting and delicate fabric expertise.", tag: "Special Occasions", imageSrc:
"http://img.b2bpic.net/free-photo/women-making-preparations-wedding_23-2149184343.jpg?_wi=2", buttons: [
{
text: "Schedule Now",
href: "/appointment",
},
text: "Schedule Now", href: "/appointment"},
],
},
]}
@@ -102,33 +79,22 @@ export default function ServicesPage() {
<ContactFaq
faqs={[
{
id: "1",
title: "What are your turnaround times?",
content:
"Standard alterations typically take 5-7 business days. Express service (2-3 days) and same-day emergency alterations are available.",
},
id: "1", title: "What are your turnaround times?", content:
"Standard alterations typically take 5-7 business days. Express service (2-3 days) and same-day emergency alterations are available."},
{
id: "2",
title: "How much do alterations cost?",
content:
"Pricing varies by garment type and complexity. Hemming typically ranges from $15-$35, suit alterations $40-$100+. Contact us for a free quote.",
},
id: "2", title: "How much do alterations cost?", content:
"Pricing varies by garment type and complexity. Hemming typically ranges from $15-$35, suit alterations $40-$100+. Contact us for a free quote."},
{
id: "3",
title: "Do you handle wedding dress alterations?",
content:
"Yes! We specialize in delicate fabrics and complex wedding dress alterations. We recommend booking 2-3 months before your event.",
},
id: "3", title: "Do you handle wedding dress alterations?", content:
"Yes! We specialize in delicate fabrics and complex wedding dress alterations. We recommend booking 2-3 months before your event."},
]}
ctaTitle="Ready to Book Your Appointment?"
ctaDescription="Contact us today to schedule your tailoring or alterations. We're here to help!"
ctaButton={{
text: "Book Now",
href: "/appointment",
}}
text: "Book Now", href: "/appointment"}}
ctaIcon={Calendar}
useInvertedBackground={false}
animationType="slide-up"
animationType="none"
/>
</div>
@@ -140,19 +106,13 @@ export default function ServicesPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/tailorstouch",
ariaLabel: "Facebook",
},
href: "https://facebook.com/tailorstouch", ariaLabel: "Facebook"},
{
icon: Instagram,
href: "https://instagram.com/tailorstouch",
ariaLabel: "Instagram",
},
href: "https://instagram.com/tailorstouch", ariaLabel: "Instagram"},
{
icon: Phone,
href: "tel:+1-555-123-4567",
ariaLabel: "Call Us",
},
href: "tel:+1-555-123-4567", ariaLabel: "Call Us"},
]}
/>
</div>