20 lines
594 B
Vue
20 lines
594 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container mx-auto px-4 py-6">
|
|
<h1 class="mb-2 text-2xl font-bold text-foreground">{{ t('wallet.title') }}</h1>
|
|
<p class="text-muted-foreground">Manage your assets and balances</p>
|
|
|
|
<!-- Wallet content will go here -->
|
|
<div class="mt-6 space-y-4">
|
|
<div class="rounded-lg border border-border bg-card p-6">
|
|
<p class="text-sm text-muted-foreground">Total Balance</p>
|
|
<p class="mt-2 text-3xl font-bold text-foreground">$0.00</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|