Files
goodgo-platform/apps/web/app/[locale]/(public)/khu-cong-nghiep/cho-thue/page.tsx
Ho Ngoc Hai 5810f0be56 feat(web): add industrial compare page, listing search, and Mapbox park map
- Add interactive Mapbox map to /khu-cong-nghiep landing page with park markers and popups
- Build compare page at /khu-cong-nghiep/so-sanh with recharts RadarChart and detailed comparison table
- Build listing search page at /khu-cong-nghiep/cho-thue with filters for property type, lease type, area, and price
- Add IndustrialListing types, API client functions, and React Query hooks

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-16 12:40:35 +07:00

12 lines
453 B
TypeScript

import type { Metadata } from 'next';
import { ListingSearchClient } from '@/components/khu-cong-nghiep/listing-search-client';
export const metadata: Metadata = {
title: 'Cho Thuê Bất Động Sản Công Nghiệp — GoodGo',
description: 'Tìm kiếm nhà xưởng, kho bãi, đất công nghiệp cho thuê tại các khu công nghiệp Việt Nam.',
};
export default function IndustrialListingsPage() {
return <ListingSearchClient />;
}