Add owner portal, i18n, contact API, and region/footer assets

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Goutam0612
2026-06-20 01:59:41 +05:30
parent 5ff87c6d00
commit 783c7da7a1
146 changed files with 16300 additions and 1611 deletions
@@ -0,0 +1,8 @@
'use client';
import { Construction } from '@/components/portal/pages';
import { usePortal } from '@/components/portal/portal-context';
export default function ConstructionPage() {
const { go, toast } = usePortal();
return <Construction go={go} toast={toast} />;
}