feat: create kyc page with api

This commit is contained in:
2026-05-12 17:47:20 +03:00
parent 82d75bd46b
commit f52365c293
30 changed files with 1042 additions and 2 deletions

1
src/pages/kyc/index.ts Normal file
View File

@@ -0,0 +1 @@
export { KycPage } from './ui/KycPage'

View File

@@ -0,0 +1,7 @@
.page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem 0;
}

View File

@@ -0,0 +1,10 @@
import { KycWidget } from '@widgets/kyc-verification'
import styles from './KycPage.module.css'
export function KycPage() {
return (
<div className={styles.page}>
<KycWidget />
</div>
)
}