Update src/app/work/page.tsx

This commit is contained in:
2026-04-15 15:18:09 +00:00
parent 2e68daf5a9
commit 4e7b52f1c8

View File

@@ -6,7 +6,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() {
export default function WorkPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -21,113 +21,55 @@ 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="work-gallery" data-section="work-gallery">
<ProductCardOne
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Sofa Deep Cleaning",
price: "Before / After",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png?_wi=2",
},
{
id: "2",
name: "Carpet Stain Removal",
price: "Before / After",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png?_wi=2",
},
{
id: "3",
name: "Mattress Restoration",
price: "Before / After",
imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg?_wi=3",
},
{
id: "4",
name: "Sofa Deep Cleaning",
price: "Before / After",
imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg?_wi=3",
},
{
id: "5",
name: "Carpet Stain Removal",
price: "Before / After",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg?_wi=2",
},
{
id: "6",
name: "Mattress Restoration",
price: "Before / After",
imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-his-home_23-2148112108.jpg",
},
]}
title="Our Work"
description="Before and after results for our clients."
/>
</div>
<div id="work-gallery" data-section="work-gallery">
<ProductCardOne
animationType="blur-reveal"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "1", name: "Sofa Deep Cleaning", price: "Before / After", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png" },
{ id: "2", name: "Carpet Stain Removal", price: "Before / After", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png" },
{ id: "3", name: "Mattress Restoration", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg" },
{ id: "4", name: "Sofa Deep Cleaning", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg" },
{ id: "5", name: "Carpet Stain Removal", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg" },
{ id: "6", name: "Mattress Restoration", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-his-home_23-2148112108.jpg" }
]}
title="Our Work"
description="Before and after results for our clients."
/>
</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>
);
}
}