Add src/app/properties/page.tsx

This commit is contained in:
2026-04-09 06:26:13 +00:00
parent cba009b6b9
commit bdc23f5c8c

View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PropertyListingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLargeSizeMediumTitles"
background="floatingGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Properties", id: "#properties" },
{ name: "Contact", id: "/contact" }
]}
brandName="Phuket Island Real Estate"
/>
</div>
<div id="properties" data-section="properties">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
title="Available Property Listings"
description="Explore our curated selection of luxury villas and beachfront condos currently for sale in Phuket."
products={[
{
id: "p1", name: "Kamala Oceanfront Villa", price: "15,000,000 THB", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool-blue-water-tropical-garden-with-sea-view-background_1150-10233.jpg"},
{
id: "p2", name: "Bang Tao Beach Condo", price: "8,500,000 THB", imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscraper-reflects-blue-cityscape-glass-window-generative-ai_188544-12677.jpg"},
{
id: "p3", name: "Rawai Pool Villa", price: "12,000,000 THB", imageSrc: "http://img.b2bpic.net/free-photo/luxury-villa-with-pool-sunset-view_23-2151974409.jpg"},
{
id: "p6", name: "Kata Exclusive Villa", price: "18,500,000 THB", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-tropical-beach-front-hotel-resort-with-swimming-pool-paradise-destination-vacations-ge_1258-150769.jpg"}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Properties", href: "/properties" }] }
]}
logoText="Phuket Island Real Estate"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}