From 629efecb648db8f60a9436453dc6e06534b258b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 21:18:29 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 97 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..9ed554e --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,97 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "#hero" }, + { name: "Why Choose", id: "#why-choose-starlight" }, + { name: "About", id: "/about" }, + { name: "Services", id: "#services" }, + { name: "Reviews", id: "#reviews" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Service Area", id: "#service-area" }, + { name: "Location", id: "#location" }, + { name: "Contact", id: "#contact" }, + ]; + + const aboutContent = [ + { type: "text", content: "# About Starlight Cleaners" }, + { type: "text", content: "## Professional Garment Care. Neighborhood Trust. At Starlight Cleaners, we know that looking your best starts with caring for the clothes you wear every day. That's why we've dedicated ourselves to providing reliable, high-quality dry cleaning and laundry services with the personal attention only a local, family-owned business can offer. For years, we've proudly served the Inwood community and surrounding neighborhoods, helping residents, families, and professionals keep their garments fresh, clean, and ready for every occasion. From business attire and delicate fabrics to everyday laundry and household linens, every item entrusted to us is handled with care and attention to detail." }, + { type: "text", content: "Our reputation has been built on consistency, friendly service, and a commitment to quality. Customers continue to choose Starlight Cleaners because they know they can count on fast turnaround times, professional garment care, reasonable pricing, and a team that genuinely values their trust. We believe convenience matters just as much as quality. That's why we offer pickup and delivery services, making it easier than ever to keep your wardrobe looking its best without disrupting your busy schedule. Whether you're dropping off a favorite suit, scheduling a wash-and-fold service, or trusting us with your household linens, our goal remains the same: to provide an exceptional experience and outstanding results every time." }, + { type: "text", content: "### Why Customers Choose Starlight Cleaners\n✓ Family-Owned & Community Trusted\n✓ Professional Dry Cleaning & Laundry Services\n✓ Convenient Pickup & Delivery\n✓ Fast Turnaround Times\n✓ Friendly, Personalized Service\n✓ Quality Care for Every Garment" }, + { type: "text", content: "### Our Promise\nEvery garment tells a story. Whether it's your everyday essentials, professional wardrobe, or special occasion attire, we treat every item with the same care and respect we'd give our own. At Starlight Cleaners, we're committed to helping you look your best—one perfectly cleaned garment at a time." }, + { type: "image", src: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865360.jpg", alt: "Starlight Cleaners Owner and Team" } + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 856da2101d1d940fd6fe90b17cce78436a4e1c9d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 21:18:30 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0483aed..1b58009 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,7 +38,7 @@ export default function LandingPage() { { name: "Why Choose", id: "#why-choose-starlight"}, { - name: "About", id: "#about"}, + name: "About", id: "/about"}, { name: "Services", id: "#services"}, { @@ -312,7 +312,7 @@ export default function LandingPage() { { label: "Services", href: "#services"}, { - label: "About", href: "#about"}, + label: "About", href: "/about"}, { label: "Reviews", href: "#reviews"}, { -- 2.49.1