Update src/app/properties/page.tsx

This commit is contained in:
2026-04-01 06:49:50 +00:00
parent ef2a43b5ac
commit dc0e49d6cc

View File

@@ -7,37 +7,29 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function PropertiesPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Properties",
id: "/properties",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Properties", id: "/properties" },
{ name: "Contact", id: "/contact" },
]}
brandName="Happy Homes"
/>
@@ -52,20 +44,8 @@ export default function LandingPage() {
title="Top Luxury Picks"
description="Premium living spaces in Mumbai."
products={[
{
id: "1",
name: "Juhu Penthouse",
price: "₹10 Cr",
variant: "Premium",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-holding-digital-tablet-standing-outdoor_23-2147862770.jpg?_wi=4",
},
{
id: "2",
name: "Vile Parle Flat",
price: "₹3 Cr",
variant: "Modern",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-hotel_1150-10836.jpg?_wi=3",
},
{ id: "1", name: "Juhu Penthouse", price: "₹10 Cr", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-holding-digital-tablet-standing-outdoor_23-2147862770.jpg" },
{ id: "2", name: "Vile Parle Flat", price: "₹3 Cr", variant: "Modern", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-hotel_1150-10836.jpg" }
]}
/>
</div>
@@ -76,56 +56,16 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Trusted by Leaders"
description="We are recognized by top industry bodies."
names={[
"Mumbai Builders Assoc.",
"Real Estate Federation",
"Housing Authority",
]}
names={["Mumbai Builders Assoc.", "Real Estate Federation", "Housing Authority"]}
/>
</div>
<div id="footer-main" data-section="footer-main">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
],
},
{
title: "Properties",
items: [
{
label: "Buy",
href: "/properties",
},
{
label: "Rent",
href: "/properties",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Services", href: "/services" }] },
{ title: "Properties", items: [{ label: "Buy", href: "/properties" }, { label: "Rent", href: "/properties" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Contact", href: "/contact" }] }
]}
logoText="Happy Homes"
/>
@@ -133,4 +73,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}