From eaf4ab996755bc6a6c69d2f13201eacf81918a4c Mon Sep 17 00:00:00 2001 From: rassadin11 Date: Tue, 12 May 2026 22:28:19 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=BF=D0=BE=D1=85=D1=83=D0=B9=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/profile/ui/ProfilePage.module.css | 11 +++++++++++ src/pages/profile/ui/ProfilePage.tsx | 9 +++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/pages/profile/ui/ProfilePage.module.css b/src/pages/profile/ui/ProfilePage.module.css index 5e7bf29..f381a90 100644 --- a/src/pages/profile/ui/ProfilePage.module.css +++ b/src/pages/profile/ui/ProfilePage.module.css @@ -5,6 +5,17 @@ background: var(--bg-deep); } +.kycBanner { + width: 100%; + padding: 10px 24px; + background: var(--error, #ff4466); + color: #fff; + font-size: 13px; + font-weight: 500; + text-align: center; + line-height: 1.4; +} + .main { max-width: 1024px; width: 100%; diff --git a/src/pages/profile/ui/ProfilePage.tsx b/src/pages/profile/ui/ProfilePage.tsx index aeda25e..b439301 100644 --- a/src/pages/profile/ui/ProfilePage.tsx +++ b/src/pages/profile/ui/ProfilePage.tsx @@ -14,6 +14,11 @@ export function ProfilePage() { return (
+ {data && !data.kyc_verified && ( +
+ Для полного доступа к платформе необходимо пройти верификацию личности (KYC) +
+ )}
@@ -29,14 +34,14 @@ export function ProfilePage() {
- +
- +