2022-04-16 10:46:52 +02:00
|
|
|
<script setup lang="ts">
|
2022-04-19 13:19:44 +02:00
|
|
|
import { useHead } from '@vueuse/head';
|
2023-05-28 23:13:24 +02:00
|
|
|
import { useTracker } from '@/modules/tracker/tracker.services';
|
2022-04-19 13:19:44 +02:00
|
|
|
|
2022-04-22 23:31:40 +02:00
|
|
|
useHead({ title: 'About - IT Tools' });
|
2022-12-21 21:02:57 +01:00
|
|
|
const { tracker } = useTracker();
|
2022-04-16 10:46:52 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-14 18:37:26 +02:00
|
|
|
<div mx-auto mt-50px max-w-600px>
|
2023-10-22 16:15:39 +08:00
|
|
|
<h1>{{ $t('about.h1') }}</h1>
|
2023-10-14 18:37:26 +02:00
|
|
|
<p text-justify>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h1p1') }}
|
2023-05-28 23:13:24 +02:00
|
|
|
<c-link href="https://github.com/CorentinTh" target="_blank" rel="noopener">
|
|
|
|
Corentin Thomasset
|
2023-10-22 16:15:39 +08:00
|
|
|
</c-link>{{ $t('about.h1p2') }}
|
2023-10-14 18:37:26 +02:00
|
|
|
</p>
|
|
|
|
<p text-justify>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h1p3') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
<c-link
|
2023-03-01 22:15:51 +01:00
|
|
|
href="https://www.buymeacoffee.com/cthmsst"
|
2022-04-16 10:46:52 +02:00
|
|
|
rel="noopener"
|
|
|
|
target="_blank"
|
2022-12-21 21:02:57 +01:00
|
|
|
@click="() => tracker.trackEvent({ eventName: 'Support button clicked' })"
|
2022-04-16 10:46:52 +02:00
|
|
|
>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h1p4') }}
|
2023-05-28 23:13:24 +02:00
|
|
|
</c-link>.
|
2023-10-14 18:37:26 +02:00
|
|
|
</p>
|
2022-04-16 10:46:52 +02:00
|
|
|
|
2023-10-22 16:15:39 +08:00
|
|
|
<h2>{{ $t('about.h2') }}</h2>
|
2023-10-14 18:37:26 +02:00
|
|
|
<p text-justify>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h2p1') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
<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
|
2023-04-19 21:38:59 +02:00
|
|
|
</c-link>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h2p2') }}
|
2023-10-14 18:37:26 +02:00
|
|
|
</p>
|
2022-04-16 10:46:52 +02:00
|
|
|
|
2023-10-22 16:15:39 +08:00
|
|
|
<h2>{{ $t('about.h3') }}</h2>
|
2023-10-14 18:37:26 +02:00
|
|
|
<p text-justify>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p1') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
<c-link
|
2023-06-19 00:21:36 +02:00
|
|
|
href="https://github.com/CorentinTh/it-tools/issues/new/choose"
|
2022-04-16 10:46:52 +02:00
|
|
|
rel="noopener"
|
|
|
|
target="_blank"
|
|
|
|
>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p2') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
</c-link>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p3') }}
|
2023-10-14 18:37:26 +02:00
|
|
|
</p>
|
|
|
|
<p text-justify>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p4') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
<c-link
|
2023-06-19 00:21:36 +02:00
|
|
|
href="https://github.com/CorentinTh/it-tools/issues/new/choose"
|
2022-04-16 10:46:52 +02:00
|
|
|
rel="noopener"
|
|
|
|
target="_blank"
|
|
|
|
>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p5') }}
|
2023-04-19 21:38:59 +02:00
|
|
|
</c-link>
|
2023-10-22 16:15:39 +08:00
|
|
|
{{ $t('about.h3p6') }}
|
2023-10-14 18:37:26 +02:00
|
|
|
</p>
|
2022-04-16 10:46:52 +02:00
|
|
|
</div>
|
|
|
|
</template>
|