Update src/app/portfolio/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,26 +25,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Desmond N."
|
||||
/>
|
||||
@@ -58,29 +43,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Restaurant",
|
||||
name: "Gourmet Hub",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/device-with-copy-space-table-with-food_23-2150917852.jpg",
|
||||
id: "1", brand: "Restaurant", name: "Gourmet Hub", price: "Featured", rating: 5,
|
||||
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/device-with-copy-space-table-with-food_23-2150917852.jpg"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Personal",
|
||||
name: "Creative Focus",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/your-best-give-up-life-goes-live-your-life_53876-13852.jpg",
|
||||
id: "2", brand: "Personal", name: "Creative Focus", price: "Featured", rating: 5,
|
||||
reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/your-best-give-up-life-goes-live-your-life_53876-13852.jpg"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Business",
|
||||
name: "Growth Agency",
|
||||
price: "Featured",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-laptop_23-2149429347.jpg",
|
||||
},
|
||||
id: "3", brand: "Business", name: "Growth Agency", price: "Featured", rating: 5,
|
||||
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-laptop_23-2149429347.jpg"
|
||||
}
|
||||
]}
|
||||
title="Selected Work"
|
||||
description="A collection of modern web designs."
|
||||
@@ -92,19 +65,13 @@ export default function LandingPage() {
|
||||
layout="page"
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Modern UI",
|
||||
price: "$1200",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page-template_23-2148675887.jpg",
|
||||
id: "p1", name: "Modern UI", price: "$1200", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page-template_23-2148675887.jpg"
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Webflow Site",
|
||||
price: "$2500",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-blog-landing-page-template_23-2148402691.jpg",
|
||||
},
|
||||
id: "p2", name: "Webflow Site", price: "$2500", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-blog-landing-page-template_23-2148402691.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -114,28 +81,16 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "/portfolio",
|
||||
},
|
||||
],
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Portfolio", href: "/portfolio" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Desmond N."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user