12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
import PropertiesClient from "@/components/PropertiesClient";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Residential Real Estate | Sky and Soil",
|
|
description: "Browse our exclusive collection of premium apartments, villas, and plots in North Bengaluru.",
|
|
};
|
|
|
|
export default function ResidentialRealEstatePage() {
|
|
return <PropertiesClient />;
|
|
}
|