mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
9 lines
229 B
Vue
9 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>
|