Update src/app/work/page.tsx

This commit is contained in:
2026-05-23 05:11:34 +00:00
parent b27eb553bd
commit 7288357fc3

View File

@@ -2,13 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import { Clock, Smartphone, TrendingUp } from "lucide-react";
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
export default function WorkPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -23,126 +21,45 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Work",
id: "/work",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="KJ Web Studio"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="KJ Web Studio"
/>
</div>
<div id="work-page" data-section="work-page">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
products={[
{
id: "w1",
brand: "Contractor",
name: "Contractor Web Concept",
price: "Lead Focus",
rating: 5,
reviewCount: "1",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-13570.jpg",
},
{
id: "w2",
brand: "Barber",
name: "Barber Shop Web Concept",
price: "Lead Focus",
rating: 5,
reviewCount: "1",
imageSrc: "http://img.b2bpic.net/free-photo/black-white-representation-sasquatch-hairy-beast_23-2151368313.jpg",
},
]}
title="Our Work"
description="See the concepts that turn visitors into clients."
/>
</div>
<div id="work-showcase" data-section="work-showcase">
<ProductCardThree
title="Our Portfolio"
description="A selection of high-converting concepts designed for local business growth."
animationType="slide-up"
gridVariant="one-large-right-three-stacked-left"
textboxLayout="split"
products={[
{ id: "1", name: "Contractor Web Concept", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/elegant-cozy-office-with-laptop-desk_23-2149636248.jpg" },
{ id: "2", name: "Barber Shop Web Concept", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/side-view-barber-styling-beard-man_23-2147778888.jpg" },
{ id: "3", name: "Restaurant Web Concept", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-as-engineer_23-2148836115.jpg" },
{ id: "4", name: "Clinic Web Concept", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-women-s-haircut_1150-5885.jpg" }
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Proven Impact"
description="Our designs drive real metrics for business owners."
metrics={[
{
id: "m1",
icon: TrendingUp,
title: "Avg. Lead Increase",
value: "45%",
},
{
id: "m2",
icon: Smartphone,
title: "Mobile Traffic",
value: "80%",
},
{
id: "m3",
icon: Clock,
title: "Build Time",
value: "7 Days",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Design",
href: "/services",
},
{
label: "Leads",
href: "/services",
},
],
},
]}
bottomLeftText="© 2024 KJ Web Studio"
bottomRightText="kjwebstudio@outlook.com"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Design", href: "/services" }, { label: "Leads", href: "/services" }] },
]}
bottomLeftText="© 2024 KJ Web Studio"
bottomRightText="kjwebstudio@outlook.com"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}