Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e222da81d9 | |||
| 196f4d58df | |||
| 9e30ffdfa8 | |||
| 1ef0f384e6 | |||
| fda910602a | |||
| 3bf80ad3c2 |
@@ -7,6 +7,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import { Sparkles, Camera, Upload } from "lucide-react";
|
import { Sparkles, Camera, Upload } from "lucide-react";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
export default function MyWorkPage() {
|
export default function MyWorkPage() {
|
||||||
const [uploadedImages, setUploadedImages] = useState<string[]>([]);
|
const [uploadedImages, setUploadedImages] = useState<string[]>([]);
|
||||||
@@ -38,13 +39,16 @@ export default function MyWorkPage() {
|
|||||||
const allProducts = [
|
const allProducts = [
|
||||||
{
|
{
|
||||||
id: "1", brand: "Luxury Residential", name: "Downtown Penthouse", price: "Featured Project", rating: 5,
|
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,
|
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,
|
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,
|
...uploadedProducts,
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -79,9 +83,7 @@ export default function MyWorkPage() {
|
|||||||
tag="Gallery"
|
tag="Gallery"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
buttons={[
|
buttons={[{ text: "Back to Home", href: "/" }]}
|
||||||
{ text: "Back to Home", href: "/" },
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/camera-on-table_1232-1341.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/camera-on-table_1232-1341.jpg"
|
||||||
imageAlt="My work portfolio"
|
imageAlt="My work portfolio"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
|
|||||||
@@ -9,7 +9,9 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import Image from "next/image";
|
||||||
import { Award, Sparkles, Zap, Camera, MessageCircle, Mail } from "lucide-react";
|
import { Award, Sparkles, Zap, Camera, MessageCircle, Mail } from "lucide-react";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -80,11 +82,13 @@ export default function LandingPage() {
|
|||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
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={{
|
positiveCard={{
|
||||||
items: [
|
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"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -105,13 +109,16 @@ export default function LandingPage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", brand: "Luxury Residential", name: "Downtown Penthouse", price: "Featured Project", rating: 5,
|
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,
|
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,
|
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>
|
</div>
|
||||||
@@ -127,13 +134,17 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
testimonials={[
|
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>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user