Update src/app/projects/page.tsx

This commit is contained in:
2026-03-06 10:51:23 +00:00
parent c06c7f560e
commit d1487df798

View File

@@ -17,16 +17,14 @@ export default function ProjectsPage() {
const footerColumns = [
{
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" },
@@ -34,8 +32,7 @@ export default function ProjectsPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#" },
{ label: "Privacy Policy", href: "#" },
@@ -77,26 +74,11 @@ export default function ProjectsPage() {
useInvertedBackground={false}
products={[
{
id: "1",
name: "Metropolitan Plaza Phase II",
price: "Pre-Launch: $1.8M",
imageSrc: "http://img.b2bpic.net/free-photo/life-style_1122-1832.jpg",
imageAlt: "Metropolitan Plaza Phase II",
},
id: "1", name: "Metropolitan Plaza Phase II", price: "Pre-Launch: $1.8M", imageSrc: "http://img.b2bpic.net/free-photo/life-style_1122-1832.jpg", imageAlt: "Metropolitan Plaza Phase II"},
{
id: "2",
name: "Riverside Heights Expansion",
price: "Expected Launch: $2.1M",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-cranes-against-skyline_1359-416.jpg",
imageAlt: "Riverside Heights Expansion",
},
id: "2", name: "Riverside Heights Expansion", price: "Expected Launch: $2.1M", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-cranes-against-skyline_1359-416.jpg", imageAlt: "Riverside Heights Expansion"},
{
id: "3",
name: "Downtown Innovation Hub",
price: "Under Construction: $3.5M",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg",
imageAlt: "Downtown Innovation Hub",
},
id: "3", name: "Downtown Innovation Hub", price: "Under Construction: $3.5M", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg", imageAlt: "Downtown Innovation Hub"},
]}
/>
</div>
@@ -112,26 +94,11 @@ 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/modern-skyscrapers-business-district_23-2148836789.jpg?_wi=3",
imageAlt: "Crystal Park Towers",
},
id: "1", name: "Crystal Park Towers", price: "$3.2M - $9.5M", imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836789.jpg?_wi=3", imageAlt: "Crystal Park Towers"},
{
id: "2",
name: "Harmony Heights",
price: "$1.1M - $2.8M",
imageSrc: "http://img.b2bpic.net/free-photo/interior-with-bid-dining-room-modern-private-house_181624-17504.jpg?_wi=3",
imageAlt: "Harmony Heights",
},
id: "2", name: "Harmony Heights", price: "$1.1M - $2.8M", imageSrc: "http://img.b2bpic.net/free-photo/interior-with-bid-dining-room-modern-private-house_181624-17504.jpg?_wi=3", imageAlt: "Harmony Heights"},
{
id: "3",
name: "Business District Central",
price: "$4.5M - $12M",
imageSrc: "http://img.b2bpic.net/free-photo/female-architect-walking-front-building_23-2147702500.jpg?_wi=3",
imageAlt: "Business District Central",
},
id: "3", name: "Business District Central", price: "$4.5M - $12M", imageSrc: "http://img.b2bpic.net/free-photo/female-architect-walking-front-building_23-2147702500.jpg?_wi=3", imageAlt: "Business District Central"},
]}
/>
</div>
@@ -160,4 +127,4 @@ export default function ProjectsPage() {
</div>
</ThemeProvider>
);
}
}