Files
ea5893ad-e24a-4bfd-ba75-3d8…/src/app/about/page.tsx
2026-04-28 01:14:00 +00:00

60 lines
2.2 KiB
TypeScript

"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: "/" },
{ 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.", "", ""
]}
/>
</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: "/contact" }, { label: "FAQs", href: "/" }] },
]}
logoText="Syncpoint Handyman"
copyrightText="© 2025 Syncpoint Handyman Service. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}