Update src/app/projects/page.tsx

This commit is contained in:
2026-03-06 10:47:40 +00:00
parent c7835e4b2e
commit 96bbcff066

View File

@@ -44,29 +44,19 @@ export default function ProjectsPage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-15.jpg?_wi=2",
imageAlt: "Project showcase 1",
},
"http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-15.jpg?_wi=2", imageAlt: "Project showcase 1"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/developing-district-new-living-complex_23-2147694673.jpg?_wi=2",
imageAlt: "Project showcase 2",
},
"http://img.b2bpic.net/free-photo/developing-district-new-living-complex_23-2147694673.jpg?_wi=2", imageAlt: "Project showcase 2"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/brutalist-inspiration-architecture-background_23-2149162820.jpg?_wi=4",
imageAlt: "Project showcase 3",
},
"http://img.b2bpic.net/free-photo/brutalist-inspiration-architecture-background_23-2149162820.jpg?_wi=4", imageAlt: "Project showcase 3"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/low-angle-shot-high-rise-building-clear-blue-sky-with-white-clouds_181624-2242.jpg?_wi=2",
imageAlt: "Project showcase 4",
},
"http://img.b2bpic.net/free-photo/low-angle-shot-high-rise-building-clear-blue-sky-with-white-clouds_181624-2242.jpg?_wi=2", imageAlt: "Project showcase 4"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/new-york-city-manhattan-skyline_649448-1430.jpg?_wi=3",
imageAlt: "Project showcase 5",
},
"http://img.b2bpic.net/free-photo/new-york-city-manhattan-skyline_649448-1430.jpg?_wi=3", imageAlt: "Project showcase 5"},
]}
buttons={[
{ text: "Back to Home", href: "/" },
@@ -86,29 +76,14 @@ export default function ProjectsPage() {
useInvertedBackground={false}
products={[
{
id: "1",
name: "Crystal Park Towers",
price: "$3.2M - $9.5M",
imageSrc:
"http://img.b2bpic.net/free-photo/brutalist-inspiration-architecture-background_23-2149162820.jpg?_wi=5",
imageAlt: "Crystal Park Towers",
},
id: "1", name: "Crystal Park Towers", price: "$3.2M - $9.5M", imageSrc:
"http://img.b2bpic.net/free-photo/brutalist-inspiration-architecture-background_23-2149162820.jpg?_wi=5", imageAlt: "Crystal Park Towers"},
{
id: "2",
name: "Skyline Tower Residency",
price: "$2.5M - $8.5M",
imageSrc:
"http://img.b2bpic.net/free-photo/low-angle-shot-high-rise-building-clear-blue-sky-with-white-clouds_181624-2242.jpg?_wi=3",
imageAlt: "Skyline Tower Residency",
},
id: "2", name: "Skyline Tower Residency", price: "$2.5M - $8.5M", imageSrc:
"http://img.b2bpic.net/free-photo/low-angle-shot-high-rise-building-clear-blue-sky-with-white-clouds_181624-2242.jpg?_wi=3", imageAlt: "Skyline Tower Residency"},
{
id: "3",
name: "Metropolitan Plaza Phase II",
price: "Pre-Launch: $1.8M",
imageSrc:
"http://img.b2bpic.net/free-photo/developing-district-new-living-complex_23-2147694673.jpg?_wi=3",
imageAlt: "Metropolitan Plaza Phase II",
},
id: "3", name: "Metropolitan Plaza Phase II", price: "Pre-Launch: $1.8M", imageSrc:
"http://img.b2bpic.net/free-photo/developing-district-new-living-complex_23-2147694673.jpg?_wi=3", imageAlt: "Metropolitan Plaza Phase II"},
]}
/>
</div>
@@ -121,16 +96,14 @@ export default function ProjectsPage() {
copyrightText="© 2025 PropSales. All rights reserved."
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Careers", href: "#" },
],
},
{
title: "Properties",
items: [
title: "Properties", items: [
{ label: "All Projects", href: "/projects" },
{ label: "Ongoing", href: "/projects" },
{ label: "Completed", href: "/projects" },
@@ -138,8 +111,7 @@ export default function ProjectsPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#" },
{ label: "Privacy Policy", href: "#" },
@@ -151,4 +123,4 @@ export default function ProjectsPage() {
</div>
</ThemeProvider>
);
}
}