Add src/app/about/page.tsx

This commit is contained in:
2026-03-07 16:08:01 +00:00
parent a51c13343d
commit 390342381a

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>
);
}