Update src/app/about/page.tsx

This commit is contained in:
2026-04-06 04:13:31 +00:00
parent 47865f9fd2
commit 53cc641113

View File

@@ -2,124 +2,63 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Shield } from "lucide-react";
import TextAbout from '@/components/sections/about/TextAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="large"
background="grid"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="large"
background="grid"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Reviews",
id: "/reviews",
},
]}
brandName="MoeDoesHVAC"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
]}
brandName="MoeDoesHVAC"
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Mission"
title="Our Commitment"
description="Elite HVAC for Michigan."
subdescription="We believe in precision and trust."
icon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-repairing-car-workshop_329181-11787.jpg?_wi=14"
mediaAnimation="slide-up"
/>
</div>
<div id="about-content" data-section="about-content">
<TextAbout
title="Our Commitment to Excellence"
useInvertedBackground={false}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
names={[
"Local Heating Union",
"Michigan HVAC Board",
"Certified Energy Partner",
]}
title="Trusted Credentials"
description="Verified excellence."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Services",
items: [
{
label: "AC Repair",
href: "/services",
},
{
label: "Furnace Installation",
href: "/services",
},
{
label: "Commercial HVAC",
href: "/services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Reviews",
href: "/reviews",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
bottomLeftText="© 2024 MoeDoesHVAC. All rights reserved."
bottomRightText="Built in Michigan"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Services", items: [
{ label: "AC Repair", href: "/services" },
{ label: "Furnace Installation", href: "/services" },
{ label: "Commercial HVAC", href: "/services" },
] },
{ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Reviews", href: "/reviews" },
{ label: "Contact", href: "/contact" },
] },
]}
bottomLeftText="© 2024 MoeDoesHVAC. All rights reserved."
bottomRightText="Built in Michigan"
/>
</div>
</ReactLenis>
</ThemeProvider>
);