Update src/app/promos/page.tsx

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

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"
/>
@@ -60,11 +45,7 @@ export default function LandingPage() {
description="Limited time discounted properties."
products={[
{
id: "d1",
name: "Discounted Terrace",
price: "₦35,000,000",
imageSrc: "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg",
},
id: "d1", name: "Discounted Terrace", price: "₦35,000,000", imageSrc: "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg"},
]}
/>
</div>
@@ -78,11 +59,7 @@ export default function LandingPage() {
description="Why invest during our promos?"
features={[
{
id: "f1",
title: "Zero Agency Fees",
description: "Save big on your purchase.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg",
},
id: "f1", title: "Zero Agency Fees", tag: "Promotion", description: "Save big on your purchase.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg"},
]}
/>
</div>
@@ -92,38 +69,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/..." },
],
},
]}