mirror of
https://github.com/CorentinTh/it-tools.git
synced 2026-08-31 08:28:58 +00:00
45 lines
1.2 KiB
Vue
45 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { IconBrandGithub, IconBrandX, IconInfoCircle } from '@tabler/icons-vue';
|
|
</script>
|
|
|
|
<template>
|
|
<c-tooltip :tooltip="$t('home.nav.github')" position="bottom">
|
|
<c-button
|
|
circle
|
|
variant="text"
|
|
href="https://github.com/CorentinTh/it-tools"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
:aria-label="$t('home.nav.githubRepository')"
|
|
>
|
|
<n-icon size="25" :component="IconBrandGithub" />
|
|
</c-button>
|
|
</c-tooltip>
|
|
|
|
<c-tooltip :tooltip="$t('home.nav.twitterX')" position="bottom">
|
|
<c-button
|
|
circle
|
|
variant="text"
|
|
href="https://x.com/ittoolsdottech"
|
|
rel="noopener"
|
|
target="_blank"
|
|
:aria-label="$t('home.nav.twitterXAccount')"
|
|
>
|
|
<n-icon size="25" :component="IconBrandX" />
|
|
</c-button>
|
|
</c-tooltip>
|
|
|
|
<c-tooltip :tooltip="$t('home.nav.about')" position="bottom">
|
|
<c-button circle variant="text" to="/about" :aria-label="$t('home.nav.aboutLabel')">
|
|
<n-icon size="25" :component="IconInfoCircle" />
|
|
</c-button>
|
|
</c-tooltip>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.n-button {
|
|
&:not(:last-child) {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
</style>
|