6 Commits

Author SHA1 Message Date
4def055896 Update src/app/page.tsx 2026-03-07 16:08:02 +00:00
188a45a914 Update src/app/layout.tsx 2026-03-07 16:08:02 +00:00
390342381a Add src/app/about/page.tsx 2026-03-07 16:08:01 +00:00
a51c13343d Merge version_1 into main
Merge version_1 into main
2026-03-07 15:46:58 +00:00
1cf7dd1838 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:46:13 +00:00
6d395f6a51 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:45:02 +00:00
3 changed files with 143 additions and 1430 deletions

102
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,102 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Heart, DollarSign, Users, Store, Star } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Book Now", id: "booking" },
]}
brandName="SNS Alterations"
bottomLeftText="1512 U St NW, Washington, DC"
bottomRightText="(202) 977-8488"
/>
</div>
<div id="about" data-section="about" style={{ paddingTop: "120px" }}>
<SplitAbout
tag="About Our Shop"
tagIcon={Store}
title="Trusted Local Tailors Since Day One"
description="SNS Alterations is your neighborhood's go-to tailor shop in Washington, DC. We've built our reputation on honest pricing, expert craftsmanship, and genuine care for every garment. Our team of experienced seamstresses brings decades of combined expertise to every project, whether it's a delicate wedding gown or a sharp business suit."
textboxLayout="default"
useInvertedBackground={false}
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg?_wi=3"
imageAlt="SNS Alterations welcoming tailor shop interior"
mediaAnimation="blur-reveal"
bulletPoints={[
{
title: "Expert Seamstresses", description: "Decades of combined experience in all alteration types", icon: Users,
},
{
title: "Fair & Transparent Pricing", description: "No hidden fees—honest quotes for every project", icon: DollarSign,
},
{
title: "Wedding Specialists", description: "Trusted by couples for perfect bridal gown alterations", icon: Heart,
},
{
title: "Local & Convenient", description: "Located at 1512 U St NW, easily accessible in DC"
},
]}
buttons={[{ text: "Schedule a Consultation", href: "#contact" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Services", items: [
{ label: "Wedding Alterations", href: "#services" },
{ label: "Suit Tailoring", href: "#services" },
{ label: "Hemming", href: "#services" },
{ label: "Custom Work", href: "#services" },
],
},
{
title: "About", items: [
{ label: "Our Story", href: "/about" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Contact Us", href: "#contact" },
{ label: "Location", href: "https://maps.google.com" },
],
},
{
title: "Connect", items: [
{ label: "Call (202) 977-8488", href: "tel:+12029778488" },
{ label: "Email Us", href: "mailto:contact@snsalterations.com" },
{ label: "Visit Our Site", href: "https://snsalterations.com" },
{ label: "Book Appointment", href: "https://calendly.com" },
],
},
]}
copyrightText="© 2025 SNS Alterations | 1512 U St NW, Washington, DC 20009"
/>
</div>
</ThemeProvider>
);
}

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ 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: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Book Now", id: "booking" }, { name: "Book Now", id: "booking" },
@@ -47,7 +47,8 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg", alt: "SNS Alterations professional tailor shop"}, src: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg", alt: "SNS Alterations professional tailor shop"
},
]} ]}
avatarText="Trusted by 150+ 5-star reviews" avatarText="Trusted by 150+ 5-star reviews"
buttons={[ buttons={[
@@ -62,7 +63,8 @@ export default function LandingPage() {
<div id="social-proof" data-section="social-proof"> <div id="social-proof" data-section="social-proof">
<SocialProofOne <SocialProofOne
names={[ names={[
"Fair Pricing", "Expert Seamstresses", "Fast Turnaround", "Premium Quality", "Honest Service", "Wedding Specialists", "Local Favorite"]} "Fair Pricing", "Expert Seamstresses", "Fast Turnaround", "Premium Quality", "Honest Service", "Wedding Specialists", "Local Favorite"
]}
title="Why Locals Love SNS Alterations" title="Why Locals Love SNS Alterations"
description="4.9 out of 5 stars from 150+ verified reviews" description="4.9 out of 5 stars from 150+ verified reviews"
tag="Trusted Local Business" tag="Trusted Local Business"
@@ -82,36 +84,44 @@ export default function LandingPage() {
title: "Wedding Dress Alterations", description: "Specialized bridal gown alterations ensuring your perfect fit on the big day", icon: Heart, title: "Wedding Dress Alterations", description: "Specialized bridal gown alterations ensuring your perfect fit on the big day", icon: Heart,
mediaItems: [ mediaItems: [
{ {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-cutting-crepe-paper-with-scissor_23-2148193652.jpg?_wi=1", imageAlt: "Professional wedding dress alteration"}, imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-cutting-crepe-paper-with-scissor_23-2148193652.jpg?_wi=1", imageAlt: "Professional wedding dress alteration"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-cutting-crepe-paper-with-scissor_23-2148193652.jpg?_wi=2", imageAlt: "Bride fitting room alteration"}, imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-cutting-crepe-paper-with-scissor_23-2148193652.jpg?_wi=2", imageAlt: "Bride fitting room alteration"
},
], ],
}, },
{ {
title: "Suit & Jacket Tailoring", description: "Premium suit and jacket alterations for perfect fit and professional appearance", icon: Shirt, title: "Suit & Jacket Tailoring", description: "Premium suit and jacket alterations for perfect fit and professional appearance", icon: Shirt,
mediaItems: [ mediaItems: [
{ {
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-fashion-designer-adjusting-fabric-weighing-scale-machine-workshop_23-2148180384.jpg", imageAlt: "Professional suit tailoring"}, imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-fashion-designer-adjusting-fabric-weighing-scale-machine-workshop_23-2148180384.jpg", imageAlt: "Professional suit tailoring"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/time-choose-new-collection_329181-14364.jpg", imageAlt: "Expert jacket fitting"}, imageSrc: "http://img.b2bpic.net/free-photo/time-choose-new-collection_329181-14364.jpg", imageAlt: "Expert jacket fitting"
},
], ],
}, },
{ {
title: "Pants & Trouser Hemming", description: "Precise hemming and length adjustments for all pants and trousers", icon: Zap, title: "Pants & Trouser Hemming", description: "Precise hemming and length adjustments for all pants and trousers", icon: Zap,
mediaItems: [ mediaItems: [
{ {
imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-tailor-working-with-cloth-samples-sewing-workshop_613910-4435.jpg?_wi=1", imageAlt: "Professional pants hemming"}, imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-tailor-working-with-cloth-samples-sewing-workshop_613910-4435.jpg?_wi=1", imageAlt: "Professional pants hemming"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-tailor-working-with-cloth-samples-sewing-workshop_613910-4435.jpg?_wi=2", imageAlt: "Detailed hemming stitching"}, imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-tailor-working-with-cloth-samples-sewing-workshop_613910-4435.jpg?_wi=2", imageAlt: "Detailed hemming stitching"
},
], ],
}, },
{ {
title: "Custom Garment Work", description: "Bespoke tailoring and custom alterations for your unique style needs", icon: Sparkles, title: "Custom Garment Work", description: "Bespoke tailoring and custom alterations for your unique style needs", icon: Sparkles,
mediaItems: [ mediaItems: [
{ {
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg?_wi=1", imageAlt: "Custom tailoring workspace"}, imageSrc: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg?_wi=1", imageAlt: "Custom tailoring workspace"
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg?_wi=2", imageAlt: "Professional tailoring detail"}, imageSrc: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg?_wi=2", imageAlt: "Professional tailoring detail"
},
], ],
}, },
]} ]}
@@ -148,7 +158,8 @@ export default function LandingPage() {
title: "Wedding Specialists", description: "Trusted by couples for perfect bridal gown alterations", icon: Heart, title: "Wedding Specialists", description: "Trusted by couples for perfect bridal gown alterations", icon: Heart,
}, },
{ {
title: "Local & Convenient", description: "Located at 1512 U St NW, easily accessible in DC"}, title: "Local & Convenient", description: "Located at 1512 U St NW, easily accessible in DC"
},
]} ]}
buttons={[{ text: "Visit Our Shop", href: "#contact" }]} buttons={[{ text: "Visit Our Shop", href: "#contact" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -160,22 +171,28 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
id: "1", name: "Carolee Lantigua", role: "Bride", company: "Wedding Client", rating: 5, id: "1", name: "Carolee Lantigua", role: "Bride", company: "Wedding Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg"
},
{ {
id: "2", name: "Sarah Mitchell", role: "Business Executive", company: "DC Professional", rating: 5, id: "2", name: "Sarah Mitchell", role: "Business Executive", company: "DC Professional", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-brutal-bearded-macho-male-dressed-suit-dark-grey-background_613910-1524.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/portrait-brutal-bearded-macho-male-dressed-suit-dark-grey-background_613910-1524.jpg"
},
{ {
id: "3", name: "Mo Jo", role: "Regular Customer", company: "Local Resident", rating: 5, id: "3", name: "Mo Jo", role: "Regular Customer", company: "Local Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-white-blazer-does-positive-pose_114579-15697.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/young-girl-white-blazer-does-positive-pose_114579-15697.jpg"
},
{ {
id: "4", name: "James Wilson", role: "Fashion Enthusiast", company: "DC Community", rating: 5, id: "4", name: "James Wilson", role: "Fashion Enthusiast", company: "DC Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg"
},
{ {
id: "5", name: "Emma Rodriguez", role: "Event Planner", company: "DC Events", rating: 5, id: "5", name: "Emma Rodriguez", role: "Event Planner", company: "DC Events", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing_1187-1543.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing_1187-1543.jpg"
},
{ {
id: "6", name: "David Chen", role: "Style Consultant", company: "Fashion District", rating: 5, id: "6", name: "David Chen", role: "Style Consultant", company: "Fashion District", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-dark-color-shirt-looking-camera-happy-positive-pointing-with-index-fingers-camera-standing-brown-background_141793-133634.jpg"}, imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-dark-color-shirt-looking-camera-happy-positive-pointing-with-index-fingers-camera-standing-brown-background_141793-133634.jpg"
},
]} ]}
title="What Our Customers Say" title="What Our Customers Say"
description="Real feedback from satisfied locals and special occasion customers" description="Real feedback from satisfied locals and special occasion customers"
@@ -215,7 +232,7 @@ export default function LandingPage() {
}, },
{ {
title: "About", items: [ title: "About", items: [
{ label: "Our Story", href: "#about" }, { label: "Our Story", href: "/about" },
{ label: "Reviews", href: "#testimonials" }, { label: "Reviews", href: "#testimonials" },
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "#contact" },
{ label: "Location", href: "https://maps.google.com" }, { label: "Location", href: "https://maps.google.com" },