10 lines
229 B
Vue
10 lines
229 B
Vue
<script setup lang="ts">
|
|
import { useHead } from '@vueuse/head';
|
|
|
|
useHead({ title: 'About - Zeeklog Online Tools' });
|
|
</script>
|
|
|
|
<template>
|
|
<c-markdown :markdown="$t('about.content')" mx-auto mt-50px max-w-600px />
|
|
</template>
|