Switch to version 3: remove src/app/about/page.tsx

This commit is contained in:
2026-04-19 04:37:29 +00:00
parent d3170bd995
commit 96b0aee1da

View File

@@ -1,62 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="noise"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Why Choose Us", id: "/why-us" },
{ name: "Reviews", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Hungen Plumbing Co."
/>
</div>
<div id="about-content" data-section="about-content">
<SplitAbout
title="About Hungen Plumbing Co."
description="We are a team of dedicated professionals committed to providing reliable residential plumbing services in our community. With years of experience and a focus on transparency, we ensure every job is done right, the first time."
bulletPoints={[
{ title: "Expert Care", description: "Certified and highly trained technicians." },
{ title: "Local Roots", description: "Serving our neighborhood with pride." },
{ title: "Reliable Service", description: "Transparent pricing and honest work." }
]}
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg?_wi=2"
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Hungen Plumbing Co."
copyrightText="© 2025 Hungen Plumbing Co."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}