feat: implement project development module, transfer management features, and industrial AVM model integration

This commit is contained in:
Ho Ngoc Hai
2026-04-18 20:34:35 +07:00
parent 0f3b4d7b0d
commit 38b9def99a
66 changed files with 9051 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
import type { Metadata } from 'next';
import { TransferWizardClient } from '@/components/chuyen-nhuong/transfer-wizard-client';
export const metadata: Metadata = {
title: 'Đăng tin chuyển nhượng',
description: 'Đăng tin chuyển nhượng nội thất, thiết bị hoặc mặt bằng',
};
export default function DangTinPage() {
return <TransferWizardClient />;
}