Skip to content

Commit

Permalink
fix(ui): minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnydanu committed Oct 26, 2024
1 parent 9bc81cd commit 3bb53a4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 30 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "it-tools",
"version": "2024.10.22-7ca5933",
"name": "godev-run",
"version": "2024.10.20-c90fb26",
"packageManager": "[email protected]",
"description": "Collection of handy online tools for developers, with great UX. ",
"author": "Corentin Th <[email protected]> (https://corentin.tech)",
"license": "GNU GPLv3",
"description": "Collection of handy online tools for developers, with great UX.",
"author": "Sunny Danu <[email protected]> (https://github.com/sunnydanu)",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/it-tools"
"url": "https://github.com/sunnydanu/help.godev.run"
},
"keywords": [
"productivity",
Expand Down
25 changes: 6 additions & 19 deletions src/components/NavbarButtons.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { IconBrandGithub, IconBrandX, IconInfoCircle, IconMoon, IconSun } from '@tabler/icons-vue';
import { BrandGithub, InfoCircle, Moon, Sun } from '@vicons/tabler';
import { useStyleStore } from '@/stores/style.store';
const styleStore = useStyleStore();
Expand All @@ -11,37 +11,24 @@ const { isDarkTheme } = toRefs(styleStore);
<c-button
circle
variant="text"
href="https://github.com/CorentinTh/it-tools"
href="https://github.com/sunnydanu/help.godev.run"
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" />
<n-icon size="25" :component="BrandGithub" />
</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" />
<n-icon size="25" :component="InfoCircle" />
</c-button>
</c-tooltip>
<c-tooltip :tooltip="isDarkTheme ? $t('home.nav.lightMode') : $t('home.nav.darkMode')" position="bottom">
<c-button circle variant="text" :aria-label="$t('home.nav.mode')" @click="() => styleStore.toggleDark()">
<n-icon v-if="isDarkTheme" size="25" :component="IconSun" />
<n-icon v-else size="25" :component="IconMoon" />
<n-icon v-if="isDarkTheme" size="25" :component="Sun" />
<n-icon v-else size="25" :component="Moon" />
</c-button>
</c-tooltip>
</template>
Expand Down
10 changes: 5 additions & 5 deletions src/layouts/base.layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const tools = computed<ToolCategory[]>(() => [
<HeroGradient class="gradient" />
<div class="text-wrapper">
<div class="title">
IT - TOOLS
GoDev.Run
</div>
<div class="divider" />
<div class="subtitle">
Expand All @@ -61,7 +61,7 @@ const tools = computed<ToolCategory[]>(() => [

<div class="footer">
<div>
IT-Tools
GoDev.Run

<c-link target="_blank" rel="noopener" :href="`https://github.com/sunnydanu/help.godev.run/blob/master/CHANGELOG.md#version-${version}`">
v{{ version }}
Expand All @@ -81,8 +81,8 @@ const tools = computed<ToolCategory[]>(() => [
</div>
<div>
© {{ new Date().getFullYear() }}
<c-link target="_blank" rel="noopener" href="https://corentin.tech?utm_source=it-tools&utm_medium=footer">
Corentin Thomasset
<c-link target="_blank" rel="noopener" href="https://github.com/sunnydanu">
Sunny Danu
</c-link>
</div>
</div>
Expand Down Expand Up @@ -123,7 +123,7 @@ const tools = computed<ToolCategory[]>(() => [
<c-tooltip position="bottom" :tooltip="$t('home.support')">
<c-button
round
href="https://www.buymeacoffee.com/cthmsst"
href="https://www.buymeacoffee.com/sunnydanu"
rel="noopener"
target="_blank"
class="support-button"
Expand Down

0 comments on commit 3bb53a4

Please sign in to comment.