Update src/app/page.tsx

This commit is contained in:
2026-01-06 16:27:34 +00:00
parent 34d024db90
commit c5dc063080

View File

@@ -30,24 +30,17 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarStyleMinimal
brandName="PrimeProperties" brandName="PrimeProperties"
navItems={[ button={{
{ text: "View Properties", href: "#properties"
name: "Properties", id: "properties" }}
}, buttonClassName="font-semibold tracking-wide"
{
name: "Why Invest", id: "why-invest"
},
{
name: "Contact", id: "contact"
}
]}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel <HeroBillboardRotatedCarousel
title="Premium Properties in Premium Locations" title="Premium Properties in Premium Locations"
description="Carefully selected investment opportunities with verified documentation, legal support, and transparent pricing." description="Carefully selected investment opportunities with verified documentation, legal support, and transparent pricing. "
tag="NEW LISTINGS ADDED THIS WEEK" tag="NEW LISTINGS ADDED THIS WEEK"
tagIcon={Sparkles} tagIcon={Sparkles}
buttons={[ buttons={[
@@ -274,6 +267,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
logoText="PrimeProperties"
columns={[ columns={[
{ {
title: "Properties", items: [ title: "Properties", items: [
@@ -341,8 +335,9 @@ export default function LandingPage() {
} }
]} ]}
copyrightText="© 2025 PrimeProperties. All rights reserved. Licensed & Regulated Real Estate Broker." copyrightText="© 2025 PrimeProperties. All rights reserved. Licensed & Regulated Real Estate Broker."
logoTextClassName="text-2xl font-light tracking-wide"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }