diff --git a/src/app/my-work/page.tsx b/src/app/my-work/page.tsx index 015a515..faa520b 100644 --- a/src/app/my-work/page.tsx +++ b/src/app/my-work/page.tsx @@ -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([]); @@ -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() { @@ -129,13 +134,17 @@ export default function LandingPage() { animationType="slide-up" testimonials={[ { - id: "1", name: "Sarah Mitchell", role: "Real Estate Agent", testimonial: "Michael's photography transformed how I present my listings. I've seen a 40% increase in qualified leads since using his content. Highly professional and creative.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Sarah Mitchell"}, + id: "1", name: "Sarah Mitchell", role: "Real Estate Agent", testimonial: "Michael's photography transformed how I present my listings. I've seen a 40% increase in qualified leads since using his content. Highly professional and creative.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Sarah Mitchell" + }, { - id: "2", name: "James Rodriguez", role: "Property Developer", testimonial: "The video tours Michael creates give buyers an immersive experience before they even visit. His work is instrumental to our marketing success.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrepreneur-with-corporate-job-looking-camera-business-office-portrait-young-man-preparing-work-planning-development-industry-with-technology-computer_482257-29387.jpg", imageAlt: "James Rodriguez"}, + id: "2", name: "James Rodriguez", role: "Property Developer", testimonial: "The video tours Michael creates give buyers an immersive experience before they even visit. His work is instrumental to our marketing success.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrepreneur-with-corporate-job-looking-camera-business-office-portrait-young-man-preparing-work-planning-development-industry-with-technology-computer_482257-29387.jpg", imageAlt: "James Rodriguez" + }, { - id: "3", name: "Emily Chen", role: "Brokerage Director", testimonial: "Working with Michael has been seamless. His quick turnaround and attention to detail make him invaluable to our team. We recommend him to all our agents.", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", imageAlt: "Emily Chen"}, + id: "3", name: "Emily Chen", role: "Brokerage Director", testimonial: "Working with Michael has been seamless. His quick turnaround and attention to detail make him invaluable to our team. We recommend him to all our agents.", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", imageAlt: "Emily Chen" + }, { - id: "4", name: "David Thompson", role: "Luxury Real Estate Specialist", testimonial: "For high-end properties, presentation is everything. Michael understands that and delivers stunning visuals that justify premium pricing. He's a game-changer.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "David Thompson"}, + id: "4", name: "David Thompson", role: "Luxury Real Estate Specialist", testimonial: "For high-end properties, presentation is everything. Michael understands that and delivers stunning visuals that justify premium pricing. He's a game-changer.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "David Thompson" + }, ]} />