10 Commits

Author SHA1 Message Date
bd7197d148 Update src/app/page.tsx 2026-03-11 23:16:09 +00:00
f944c87816 Merge version_2 into main
Merge version_2 into main
2026-03-11 23:14:13 +00:00
af2591f1e8 Update src/app/services/page.tsx 2026-03-11 23:14:09 +00:00
cb7fd2ff32 Update src/app/page.tsx 2026-03-11 23:14:09 +00:00
f3e33bce1d Update src/app/contact/page.tsx 2026-03-11 23:14:08 +00:00
00017732ea Update src/app/appointment/page.tsx 2026-03-11 23:14:08 +00:00
e45e395d5c Update src/app/about/page.tsx 2026-03-11 23:14:08 +00:00
4f65b0ad78 Merge version_1 into main
Merge version_1 into main
2026-03-11 23:09:08 +00:00
dd70436437 Merge version_1 into main
Merge version_1 into main
2026-03-11 23:08:38 +00:00
bcf19e25b9 Merge version_1 into main
Merge version_1 into main
2026-03-11 23:07:56 +00:00
5 changed files with 75 additions and 179 deletions

View File

@@ -33,9 +33,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Appointment",
href: "/appointment",
}}
text: "Book Appointment", href: "/appointment"}}
/>
</div>
@@ -63,26 +61,14 @@ export default function AboutPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah Mitchell",
imageSrc:
"http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-2424.jpg?_wi=2",
imageAlt: "professional woman portrait headshot",
},
id: "1", name: "Sarah Mitchell", imageSrc:
"http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-2424.jpg?_wi=2", imageAlt: "professional woman portrait headshot"},
{
id: "2",
name: "James Chen",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg?_wi=2",
imageAlt: "professional man portrait headshot",
},
id: "2", name: "James Chen", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg?_wi=2", imageAlt: "professional man portrait headshot"},
{
id: "3",
name: "Emma Williams",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=2",
imageAlt: "professional woman portrait headshot",
},
id: "3", name: "Emma Williams", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=2", imageAlt: "professional woman portrait headshot"},
]}
/>
</div>
@@ -95,19 +81,13 @@ export default function AboutPage() {
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>

View File

@@ -25,15 +25,13 @@ export default function AppointmentPage() {
<NavbarLayoutFloatingOverlay
brandName="Tailor's Touch"
navItems={[
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Appointment",
href: "/appointment",
}}
text: "Book Appointment", href: "/appointment"}}
/>
</div>
@@ -41,39 +39,25 @@ export default function AppointmentPage() {
<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."},
{
id: "4",
title: "What types of fabrics do you work with?",
content:
"We work with all fabric types including delicate silks, premium wools, cotton, linen, and specialty fabrics. All garments are treated with expert care.",
},
id: "4", title: "What types of fabrics do you work with?", content:
"We work with all fabric types including delicate silks, premium wools, cotton, linen, and specialty fabrics. All garments are treated with expert care."},
]}
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>
@@ -84,19 +68,13 @@ export default function AppointmentPage() {
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>

View File

@@ -32,9 +32,7 @@ export default function ContactPage() {
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Appointment",
href: "/appointment",
}}
text: "Book Appointment", href: "/appointment"}}
/>
</div>
@@ -43,39 +41,25 @@ export default function ContactPage() {
<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."},
{
id: "4",
title: "What types of fabrics do you work with?",
content:
"We work with all fabric types including delicate silks, premium wools, cotton, linen, and specialty fabrics. All garments are treated with expert care.",
},
id: "4", title: "What types of fabrics do you work with?", content:
"We work with all fabric types including delicate silks, premium wools, cotton, linen, and specialty fabrics. All garments are treated with expert care."},
]}
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>
@@ -87,19 +71,13 @@ export default function ContactPage() {
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>

View File

@@ -47,9 +47,9 @@ export default function HomePage() {
description="Professional tailoring and alterations for suits, dresses, formalwear, and everyday clothing."
tag="Welcome to Excellence"
tagIcon={Star}
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-cutting-fabric_23-2148827137.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AosgeeV2VpNTt0ql2Lbdbgho33/uploaded-1773270792201-9r4t31tl.jpg"
imageAlt="Professional tailor working on clothing"
showBlur={true}
showBlur={false}
showDimOverlay={false}
buttons={[
{
@@ -70,7 +70,7 @@ export default function HomePage() {
animationType="slide-up"
features={[
{
id: "1", title: "Suit Tailoring", description:
id: "1", title: "Suit Tailoring Look Sharp & Professional", 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", buttons: [
{
@@ -78,7 +78,7 @@ export default function HomePage() {
],
},
{
id: "2", title: "Dress Alterations", description:
id: "2", title: "Dress Alterations Perfect Fit Every Time", 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", buttons: [
{
@@ -86,7 +86,7 @@ export default function HomePage() {
],
},
{
id: "3", title: "Wedding Dress Alterations", description:
id: "3", title: "Wedding Dress Alterations Your Dream Fit", 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", buttons: [
{
@@ -94,7 +94,7 @@ export default function HomePage() {
],
},
{
id: "4", title: "Pants Hemming", description:
id: "4", title: "Pants Hemming Fast & Professional", description:
"Quick turnaround hemming service for all trouser styles and fabrics.", tag: "Fast Service", imageSrc:
"http://img.b2bpic.net/free-photo/female-tailor-measuring-male-clients-shirt_23-2148834112.jpg", buttons: [
{
@@ -102,7 +102,7 @@ export default function HomePage() {
],
},
{
id: "5", title: "Zipper Repair", description:
id: "5", title: "Zipper Repair Quick Solutions", description:
"Expert repair and replacement for broken zippers on all garment types.", tag: "Repairs", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-hands-placing-pin_1157-363.jpg", buttons: [
{
@@ -110,7 +110,7 @@ export default function HomePage() {
],
},
{
id: "6", title: "Emergency Alterations", description:
id: "6", title: "Emergency Alterations Same-Day Service Available", description:
"Same-day and rush alterations available. Perfect for last-minute needs.", tag: "Urgent", imageSrc:
"http://img.b2bpic.net/free-photo/fashion-designer-taking-measurement-his-customer-s-back-with-yellow-measuring-tape_23-2148180303.jpg", buttons: [
{
@@ -186,7 +186,7 @@ export default function HomePage() {
text: "Book Now", href: "/appointment"}}
ctaIcon={Calendar}
useInvertedBackground={false}
animationType="slide-up"
animationType="none"
/>
</div>

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>