it-tools/src/pages/About.vue

64 lines
1.7 KiB
Vue
Raw Normal View History

2022-04-16 10:46:52 +02:00
<script setup lang="ts">
import { useHead } from '@vueuse/head';
import { useTracker } from '@/modules/tracker/tracker.services';
2022-04-22 23:31:40 +02:00
useHead({ title: 'About - IT Tools' });
const { tracker } = useTracker();
2022-04-16 10:46:52 +02:00
</script>
<template>
<div mx-auto mt-50px max-w-600px>
<h1>{{ $t('about.h1') }}</h1>
<p text-justify>
{{ $t('about.h1p1') }}
<c-link href="https://github.com/CorentinTh" target="_blank" rel="noopener">
Corentin Thomasset
</c-link>{{ $t('about.h1p2') }}
</p>
<p text-justify>
{{ $t('about.h1p3') }}
<c-link
href="https://www.buymeacoffee.com/cthmsst"
2022-04-16 10:46:52 +02:00
rel="noopener"
target="_blank"
@click="() => tracker.trackEvent({ eventName: 'Support button clicked' })"
2022-04-16 10:46:52 +02:00
>
{{ $t('about.h1p4') }}
</c-link>.
</p>
2022-04-16 10:46:52 +02:00
<h2>{{ $t('about.h2') }}</h2>
<p text-justify>
{{ $t('about.h2p1') }}
<c-link href="https://github.com/CorentinTh/it-tools/blob/main/package.json" rel="noopener" target="_blank">
2022-04-16 10:46:52 +02:00
package.json
</c-link>
{{ $t('about.h2p2') }}
</p>
2022-04-16 10:46:52 +02:00
<h2>{{ $t('about.h3') }}</h2>
<p text-justify>
{{ $t('about.h3p1') }}
<c-link
href="https://github.com/CorentinTh/it-tools/issues/new/choose"
2022-04-16 10:46:52 +02:00
rel="noopener"
target="_blank"
>
{{ $t('about.h3p2') }}
</c-link>
{{ $t('about.h3p3') }}
</p>
<p text-justify>
{{ $t('about.h3p4') }}
<c-link
href="https://github.com/CorentinTh/it-tools/issues/new/choose"
2022-04-16 10:46:52 +02:00
rel="noopener"
target="_blank"
>
{{ $t('about.h3p5') }}
</c-link>
{{ $t('about.h3p6') }}
</p>
2022-04-16 10:46:52 +02:00
</div>
</template>