blob: 556f0f9e0e283a64fbabc4f5d1447f265d3f2aec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<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>
|