mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
9 lines
217 B
Vue
9 lines
217 B
Vue
<script setup lang="ts">
|
|
import { useHead } from '@vueuse/head';
|
|
|
|
useHead({ title: 'About - IT Tools' });
|
|
</script>
|
|
|
|
<template>
|
|
<c-markdown :markdown="$t('about.content')" mx-auto mt-50px max-w-600px />
|
|
</template>
|