Add src/app/about/page.tsx

This commit is contained in:
2026-04-28 00:20:24 +00:00
parent cd9aaf5710
commit b65525d51e

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

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmallSizeMediumTitles"
background="fluid"
cardStyle="inset"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Syncpoint Handyman"
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Meet Art S. - Your Trusted Local Partner"
description={[
"Welcome to Syncpoint Handyman Service. Owned and operated by Art S., our business was built on the core belief that homeowners deserve reliable, high-quality workmanship without the stress.", "Serving the Schaumburg area, we handle everything from precision TV mounting and furniture assembly to essential plumbing, electrical updates, and expert drywall repair. We don't just fix things; we improve your home experience.", "Our commitment is simple: we show up on time, maintain a clean workspace, and deliver results that stand the test of time."
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/" }] },
{ title: "Support", items: [{ label: "Contact", href: "/" }, { label: "FAQs", href: "/" }] },
]}
logoText="Syncpoint Handyman"
copyrightText="© 2025 Syncpoint Handyman Service. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}