diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 4d9b97a..e694019 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -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 ( @@ -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" }, ]} /> @@ -122,36 +71,8 @@ export default function LandingPage() {