Update src/app/about/page.tsx

This commit is contained in:
2026-03-06 10:51:21 +00:00
parent 6055dcfed8
commit fc833ea227

View File

@@ -46,24 +46,16 @@ export default function AboutPage() {
metrics={[
{
icon: Building2,
label: "Properties Listed",
value: "250+",
},
label: "Properties Listed", value: "250+"},
{
icon: TrendingUp,
label: "Projects Completed",
value: "45",
},
label: "Projects Completed", value: "45"},
{
icon: Users,
label: "Happy Clients",
value: "1,200+",
},
label: "Happy Clients", value: "1,200+"},
{
icon: Award,
label: "Years Experience",
value: "15+",
},
label: "Years Experience", value: "15+"},
]}
/>
</div>
@@ -78,35 +70,17 @@ export default function AboutPage() {
animationType="slide-up"
features={[
{
id: "1",
title: "Residential Complexes",
description:
"Luxury apartments, villas, and residential communities featuring modern architecture",
tag: "Residential",
imageSrc:
"http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg?_wi=2",
imageAlt: "Luxury residential complex",
},
id: "1", title: "Residential Complexes", description:
"Luxury apartments, villas, and residential communities featuring modern architecture", tag: "Residential", imageSrc:
"http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg?_wi=2", imageAlt: "Luxury residential complex"},
{
id: "2",
title: "Commercial Properties",
description:
"Office spaces, retail centers, and business parks designed for enterprise growth",
tag: "Commercial",
imageSrc:
"http://img.b2bpic.net/free-photo/female-architect-walking-front-building_23-2147702500.jpg?_wi=4",
imageAlt: "Commercial office building",
},
id: "2", title: "Commercial Properties", description:
"Office spaces, retail centers, and business parks designed for enterprise growth", tag: "Commercial", imageSrc:
"http://img.b2bpic.net/free-photo/female-architect-walking-front-building_23-2147702500.jpg?_wi=4", imageAlt: "Commercial office building"},
{
id: "3",
title: "Mixed-Use Developments",
description:
"Integrated projects combining residential, retail, and entertainment spaces",
tag: "Mixed-Use",
imageSrc:
"http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836789.jpg?_wi=4",
imageAlt: "Modern mixed-use development",
},
id: "3", title: "Mixed-Use Developments", description:
"Integrated projects combining residential, retail, and entertainment spaces", tag: "Mixed-Use", imageSrc:
"http://img.b2bpic.net/free-photo/modern-skyscrapers-business-district_23-2148836789.jpg?_wi=4", imageAlt: "Modern mixed-use development"},
]}
/>
</div>
@@ -120,16 +94,14 @@ export default function AboutPage() {
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" },
@@ -137,8 +109,7 @@ export default function AboutPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#" },
{ label: "Privacy Policy", href: "#" },
@@ -150,4 +121,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}