17 lines
629 B
TypeScript

import BengaluruPropertiesClientWrapper from "@/components/BengaluruPropertiesClientWrapper";
import { Metadata } from "next";
import { Suspense } from "react";
export const metadata: Metadata = {
title: "Property for Sale in Bengaluru | Sky and Soil",
description: "Browse our exclusive collection of premium apartments, villas, and plots in Bengaluru.",
};
export default function PropertyForSalePage() {
return (
<Suspense fallback={<div className="min-h-screen bg-gray-50 flex items-center justify-center">Loading...</div>}>
<BengaluruPropertiesClientWrapper />
</Suspense>
);
}