mirror of https://github.com/elk-zone/elk.git
22 lines
468 B
Vue
22 lines
468 B
Vue
|
<script lang="ts" setup>
|
||
|
const { lg } = breakpoints
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<MainContent :back="!lg">
|
||
|
<template #title>
|
||
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
||
|
<span>{{ $t('settings.about.label') }}</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
<div text-center mt-10>
|
||
|
<h1 text-4xl>
|
||
|
🚧
|
||
|
</h1>
|
||
|
<h3 text-xl>
|
||
|
{{ $t('settings.about.label') }}
|
||
|
</h3>
|
||
|
</div>
|
||
|
</MainContent>
|
||
|
</template>
|