diff --git a/src/app/page.tsx b/src/app/page.tsx index 4f51d37..2124a3a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -85,6 +85,9 @@ export default function LandingPage() { useInvertedBackground={false} gridVariant="uniform-all-items-equal" carouselMode="buttons" + buttons={[ + { text: "See all", href: "/properties" } + ]} products={[ { id: "1", name: "Palm Jumeirah Villa", price: "AED 12,500,000", variant: "5 Bed Villa | Beachfront", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx new file mode 100644 index 0000000..d12dcb3 --- /dev/null +++ b/src/app/properties/page.tsx @@ -0,0 +1,186 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Home, Mail } from "lucide-react"; + +export default function PropertiesPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}