This commit is contained in:
Nadar
2026-03-17 13:24:22 +03:00
commit 82e5ac9d81
554 changed files with 29637 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<template>
<div>
<div
v-for="block in propertyBlocks"
:key="block.title"
class="elements"
>
<span class="title">
{{ block.title }}
</span>
<h5 class="text-clr-grey-500">
{{ block.underTitle }}
</h5>
<VerificationProperty
v-for="property in block.properties"
:key="property.title"
:title="property.title"
:text="property.text"
/>
</div>
</div>
</template>
<script setup>
const propertyBlocks=[
{
title: 'Restrictions',
underTitle: 'Invoices',
properties:[
{title:'Minimum amount in the invoice is', text:' 5 USDT'},
{title:'Commission for creating an invoice is', text:'0.5 USDT'},
{title:'Limit for creating invoices is', text:'200 per day, 1000 per month'},
]},
{
underTitle: 'Withdrawal of funds',
properties:[
{title:'Minimum withdrawal amount is', text:'5 USDT'},
{title:'Commission for withdrawal is', text:'2.5 USDT + 1%'}
]},
]
</script>
<style lang="scss" scoped>
.elements {
display: flex;
flex-direction: column;
gap: 16px;
}
.title{
@include txt-m-b;
}
</style>