36 lines
715 B
Vue
36 lines
715 B
Vue
<script lang="ts" setup>
|
|
import { capitalize } from '~/utils/str'
|
|
|
|
// composable
|
|
const { t } = useLang()
|
|
|
|
// compiler macro
|
|
definePageMeta({
|
|
layout: 'page',
|
|
})
|
|
useHead(() => ({
|
|
title: capitalize(t('pages.blank.title')),
|
|
meta: [
|
|
{
|
|
name: 'description',
|
|
content: t('pages.blank.description'),
|
|
},
|
|
],
|
|
}))
|
|
</script>
|
|
|
|
<template>
|
|
<PageWrapper>
|
|
<PageHeader>
|
|
<PageTitle :text="$t('pages.blank.title')" class="capitalize" />
|
|
</PageHeader>
|
|
<PageBody>
|
|
<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>
|