Initial commit

This commit is contained in:
2025-10-14 14:17:21 +08:00
commit ac715a8b88
35011 changed files with 3834178 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
'use client'
import DemoForm from '../components/base/form/form-scenarios/demo'
export default function Page() {
return (
<div className='flex h-screen w-full items-center justify-center p-20'>
<DemoForm />
</div>
)
}