Add src/app/properties/[id]/page.tsx

This commit is contained in:
2026-05-11 12:01:24 +00:00
parent f2da8cfe21
commit 7a50abc1b9

View File

@@ -0,0 +1,22 @@
"use client";
import { useParams } from 'next/navigation';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function PropertyDetailPage() {
const { id } = useParams();
return (
<ThemeProvider>
<NavbarStyleCentered
navItems={[{ name: "Back to Home", id: "/" }]}
brandName="Aura Luxury Estates"
/>
<main className="container mx-auto py-20 px-6">
<h1 className="text-4xl font-bold mb-6">Property Detail: {id}</h1>
<p>Detailed specifications, pricing, and high-resolution media for the property would be displayed here.</p>
</main>
</ThemeProvider>
);
}