8 Commits

Author SHA1 Message Date
d5af5625eb Merge version_3 into main
Merge version_3 into main
2026-03-03 18:21:45 +00:00
e222da81d9 Update src/app/page.tsx 2026-03-03 18:21:40 +00:00
196f4d58df Update src/app/my-work/page.tsx 2026-03-03 18:21:39 +00:00
9a7b0306d5 Merge version_3 into main
Merge version_3 into main
2026-03-03 18:13:54 +00:00
9e30ffdfa8 Update src/app/page.tsx 2026-03-03 18:13:48 +00:00
1ef0f384e6 Update src/app/my-work/page.tsx 2026-03-03 18:13:47 +00:00
fda910602a Merge version_2 into main
Merge version_2 into main
2026-03-03 18:09:25 +00:00
3bf80ad3c2 Merge version_2 into main
Merge version_2 into main
2026-03-03 18:00:17 +00:00
2 changed files with 28 additions and 15 deletions

View File

@@ -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,
];
@@ -79,9 +83,7 @@ export default function MyWorkPage() {
tag="Gallery"
tagIcon={Sparkles}
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Back to Home", href: "/" },
]}
buttons={[{ text: "Back to Home", href: "/" }]}
imageSrc="http://img.b2bpic.net/free-photo/camera-on-table_1232-1341.jpg"
imageAlt="My work portfolio"
imagePosition="right"

View File

@@ -9,7 +9,9 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
import Image from "next/image";
import { Award, Sparkles, Zap, Camera, MessageCircle, Mail } from "lucide-react";
import Link from "next/link";
export default function LandingPage() {
return (
@@ -80,11 +82,13 @@ export default function LandingPage() {
tagIcon={Zap}
negativeCard={{
items: [
"Generic stock photos", "Poor lighting and composition", "No video content", "Slow turnaround times"],
"Generic stock photos", "Poor lighting and composition", "No video content", "Slow turnaround times"
],
}}
positiveCard={{
items: [
"Custom-shot photography & video", "Professional editing and enhancement", "4K video tours and reels", "Quick 48-hour delivery"],
"Custom-shot photography & video", "Professional editing and enhancement", "4K video tours and reels", "Quick 48-hour delivery"
],
}}
textboxLayout="default"
useInvertedBackground={false}
@@ -105,13 +109,16 @@ export default function LandingPage() {
products={[
{
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=1", imageAlt: "Downtown penthouse photography"},
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1", 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=1", imageAlt: "Modern office space photography"},
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg?_wi=1", 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=1", imageAlt: "Suburban estate photography"},
reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg?_wi=1", imageAlt: "Suburban estate photography"
},
]}
/>
</div>
@@ -127,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"
},
]}
/>
</div>