17 lines
328 B
Vue
17 lines
328 B
Vue
<template>
|
|
<div data-theme="dark" class="min-h-screen">
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// App-level setup
|
|
useHead({
|
|
title: 'Ziya - Trading Platform',
|
|
meta: [
|
|
{ name: 'description', content: 'One Stop Shop for your trading needs' }
|
|
]
|
|
})
|
|
</script>
|