- 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>
12 lines
460 B
TypeScript
12 lines
460 B
TypeScript
import type { Metadata } from 'next';
|
|
import { ParkCompareClient } from '@/components/khu-cong-nghiep/park-compare-client';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'So Sánh Khu Công Nghiệp — GoodGo',
|
|
description: 'So sánh chi tiết giữa các khu công nghiệp tại Việt Nam: diện tích, giá thuê, tỷ lệ lấp đầy, hạ tầng và kết nối.',
|
|
};
|
|
|
|
export default function ParkComparePage() {
|
|
return <ParkCompareClient />;
|
|
}
|