Update src/app/about/page.tsx

This commit is contained in:
2026-04-15 15:18:08 +00:00
parent a901a5d0f2
commit c95033b981

View File

@@ -5,8 +5,9 @@ import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Activity, ShieldCheck, Zap } from 'lucide-react';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -21,87 +22,49 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Our Work",
id: "/work",
},
{
name: "Service Area",
id: "/service-area",
},
{
name: "Facebook",
id: "https://facebook.com/yurii.khoma.2025",
},
]}
brandName="Frankfurt Sofa & Carpet Cleaning"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Our Work", id: "/work" },
{ name: "Service Area", id: "/service-area" },
{ name: "Facebook", id: "https://facebook.com/yurii.khoma.2025" },
]}
brandName="Frankfurt Sofa & Carpet Cleaning"
button={{ text: "Get Quote", href: "tel:+14848454829" }}
/>
</div>
<div id="about-section" data-section="about-section">
<AboutMetric
useInvertedBackground={false}
title="About Frankfurt Sofa & Carpet Cleaning"
metrics={[
{
label: "Professional Experience",
value: "Reliable",
},
{
label: "Service Quality",
value: "High",
},
{
label: "Fast Drying",
value: "Yes",
},
]}
metricsAnimation="blur-reveal"
/>
</div>
<div id="about-section" data-section="about-section">
<AboutMetric
useInvertedBackground={false}
title="About Frankfurt Sofa & Carpet Cleaning"
metrics={[
{ icon: Activity, label: "Professional Experience", value: "Reliable" },
{ icon: ShieldCheck, label: "Service Quality", value: "High" },
{ icon: Zap, label: "Fast Drying", value: "Yes" }
]}
metricsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Frankfurt Sofa & Carpet Cleaning"
columns={[
{
title: "Contact",
items: [
{
label: "(484) 845-4829",
href: "tel:+14848454829",
},
{
label: "frankfurtsofacleaning@gmail.com",
href: "mailto:frankfurtsofacleaning@gmail.com",
},
],
},
{
title: "Location",
items: [
{
label: "1014 S Chester Rd, West Chester, PA 19382",
href: "#",
},
],
},
]}
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Frankfurt Sofa & Carpet Cleaning"
columns={[
{ title: "Contact", items: [
{ label: "(484) 845-4829", href: "tel:+14848454829" },
{ label: "frankfurtsofacleaning@gmail.com", href: "mailto:frankfurtsofacleaning@gmail.com" }
] },
{ title: "Location", items: [
{ label: "1014 S Chester Rd, West Chester, PA 19382", href: "#" }
] }
]}
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}