Update src/app/portfolio/page.tsx

This commit is contained in:
2026-03-28 13:35:25 +00:00
parent 2d77f1f88d
commit 8182db68dd

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function LandingPage() {
export default function PortfolioPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -25,32 +25,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Kitchens",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Testimonials",
id: "/testimonials",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Kitchens", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Conway Kitchens"
button={{ text: "Enquire", href: "/contact" }}
/>
</div>
@@ -61,33 +44,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1",
brand: "Modern",
name: "Sleek Contemporary Kitchen",
price: "Custom",
rating: 5,
reviewCount: "12",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976543.jpg?_wi=1",
},
{
id: "p2",
brand: "Traditional",
name: "Heritage Farmhouse Style",
price: "Custom",
rating: 5,
reviewCount: "8",
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-dining-room-with-garden-view_23-2152008199.jpg?_wi=1",
},
{
id: "p3",
brand: "Contemporary",
name: "Minimalist Open Living",
price: "Custom",
rating: 5,
reviewCount: "15",
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-composition-with-modern-furniture_23-2147914071.jpg",
},
{ id: "p1", brand: "Modern", name: "Sleek Contemporary Kitchen", price: "Custom", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976543.jpg" },
{ id: "p2", brand: "Traditional", name: "Heritage Farmhouse Style", price: "Custom", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-dining-room-with-garden-view_23-2152008199.jpg" },
{ id: "p3", brand: "Contemporary", name: "Minimalist Open Living", price: "Custom", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-composition-with-modern-furniture_23-2147914071.jpg" },
]}
title="Recent Kitchen Projects"
description="Explore our portfolio of modern, traditional, and contemporary kitchen installations."
@@ -103,18 +62,8 @@ export default function LandingPage() {
title="Feature Installations"
description="A curated selection of our best work."
products={[
{
id: "p4",
name: "Oak Veneer Island",
price: "Custom",
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-dining-room-with-garden-view_23-2152008199.jpg?_wi=2",
},
{
id: "p5",
name: "Luxury Marble Kitchen",
price: "Custom",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976543.jpg?_wi=2",
},
{ id: "p4", name: "Oak Veneer Island", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-dining-room-with-garden-view_23-2152008199.jpg" },
{ id: "p5", name: "Luxury Marble Kitchen", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976543.jpg" },
]}
/>
</div>
@@ -122,36 +71,8 @@ export default function LandingPage() {
<div id="site-footer" data-section="site-footer">
<FooterSimple
columns={[
{
title: "Navigation",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Info",
items: [
{
label: "Established 1976",
href: "#",
},
{
label: "Ballygawley, NI",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, { label: "Contact", href: "/contact" }] },
{ title: "Info", items: [{ label: "Established 1976", href: "#" }, { label: "Ballygawley, NI", href: "#" }] },
]}
bottomLeftText="© 2024 Conway Kitchens."
bottomRightText="All rights reserved."
@@ -160,4 +81,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}