Update src/app/my-work/page.tsx
This commit is contained in:
@@ -7,6 +7,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Sparkles, Camera, Upload } from "lucide-react";
|
||||
import { useState } from "react";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function MyWorkPage() {
|
||||
const [uploadedImages, setUploadedImages] = useState<string[]>([]);
|
||||
@@ -38,13 +39,16 @@ export default function MyWorkPage() {
|
||||
const allProducts = [
|
||||
{
|
||||
id: "1", brand: "Luxury Residential", name: "Downtown Penthouse", price: "Featured Project", rating: 5,
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=2", imageAlt: "Downtown penthouse photography"},
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=2", imageAlt: "Downtown penthouse photography"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Commercial Real Estate", name: "Modern Office Space", price: "Featured Project", rating: 5,
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg?_wi=2", imageAlt: "Modern office space photography"},
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg?_wi=2", imageAlt: "Modern office space photography"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Family Homes", name: "Suburban Estate", price: "Featured Project", rating: 5,
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg?_wi=2", imageAlt: "Suburban estate photography"},
|
||||
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg?_wi=2", imageAlt: "Suburban estate photography"
|
||||
},
|
||||
...uploadedProducts,
|
||||
];
|
||||
|
||||
@@ -64,7 +68,6 @@ export default function MyWorkPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Michael Carpino"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARbqyUkytmmnyoUaQYVwFKuoD6/uploaded-1772561580631-rzxo5i39.png"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "My Work", id: "/my-work" },
|
||||
|
||||
Reference in New Issue
Block a user