28 lines
766 B
Vue
28 lines
766 B
Vue
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: 'dashboard',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<PageWrapper>
|
|
<PageHeader>
|
|
<PageTitle :text="$t('pages.dashboard.index.title')" class="capitalize" />
|
|
</PageHeader>
|
|
<PageBody>
|
|
<PageSection>
|
|
<p>
|
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia autem
|
|
debitis ab dolorum tempore placeat possimus perferendis porro sit aut
|
|
nobis quasi hic consequuntur, atque impedit nihil totam illo odit?
|
|
</p>
|
|
</PageSection>
|
|
<PageSection>
|
|
<div v-for="i in 30" :key="i" class="text-6xl uppercase">
|
|
{{ $t('pages.blank.just_blank_page_with_title') }}
|
|
</div>
|
|
</PageSection>
|
|
</PageBody>
|
|
</PageWrapper>
|
|
</template>
|