feat(kyc): add KYC profile page, navigate instead of modal
All checks were successful
Build Docker Image / build (push) Successful in 4m17s

This commit is contained in:
Ruslan Bakiev
2026-01-27 12:51:08 +07:00
parent b5534d1fd5
commit 3f7b83bb6d
2 changed files with 27 additions and 19 deletions

25
app/pages/kyc/[uuid].vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<div class="min-h-screen bg-base-200">
<div class="container mx-auto px-4 py-8 max-w-4xl">
<!-- Back button -->
<NuxtLink :to="localePath('/catalog')" class="btn btn-ghost btn-sm mb-4">
<Icon name="lucide:arrow-left" size="16" />
{{ $t('common.back') }}
</NuxtLink>
<!-- KYC Profile Card -->
<KycProfileCard :kyc-profile-uuid="uuid" />
</div>
</div>
</template>
<script setup lang="ts">
definePageMeta({
layout: 'topnav'
})
const route = useRoute()
const localePath = useLocalePath()
const uuid = computed(() => route.params.uuid as string)
</script>