Files
webapp/app/pages/kyc/[uuid].vue
Ruslan Bakiev 3f7b83bb6d
All checks were successful
Build Docker Image / build (push) Successful in 4m17s
feat(kyc): add KYC profile page, navigate instead of modal
2026-01-27 12:51:08 +07:00

26 lines
626 B
Vue

<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>