Update src/app/about/page.tsx

This commit is contained in:
2026-05-05 23:53:29 +00:00
parent 489b1c91b7
commit 9f917809aa

View File

@@ -25,26 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Listings",
id: "/listings",
},
{
name: "Deals",
id: "/promos",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Listings", id: "/listings" },
{ name: "Deals", id: "/promos" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Property Hub"
/>
@@ -59,11 +44,7 @@ export default function LandingPage() {
description="Building trust in Nigerian real estate."
features={[
{
id: "m1",
title: "Innovation",
description: "Driving modern living.",
imageSrc: "http://img.b2bpic.net/free-photo/contemporary-house-architecture_23-2151050996.jpg",
},
id: "m1", title: "Innovation", tag: "Mission", description: "Driving modern living.", imageSrc: "http://img.b2bpic.net/free-photo/contemporary-house-architecture_23-2151050996.jpg"},
]}
/>
</div>
@@ -75,11 +56,7 @@ export default function LandingPage() {
title="Our History"
description="Over 15 years of excellence."
names={[
"2008 Founded",
"2012 Expansion",
"2018 Innovation",
"2023 Digital Shift",
]}
"2008 Founded", "2012 Expansion", "2018 Innovation", "2023 Digital Shift"]}
/>
</div>
@@ -88,38 +65,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Properties",
href: "/listings",
},
{
label: "Promotions",
href: "/promos",
},
{ label: "Properties", href: "/listings" },
{ label: "Promotions", href: "/promos" },
],
},
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/about",
},
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "WhatsApp",
href: "https://wa.me/...",
},
{ label: "Contact", href: "/contact" },
{ label: "WhatsApp", href: "https://wa.me/..." },
],
},
]}