feat(footer): more footer content

This commit is contained in:
2026-02-05 12:24:04 +01:00
parent 4fa8fce9b2
commit 65ef6f682f
5 changed files with 54 additions and 11 deletions

View File

@@ -11,13 +11,12 @@
<UNavigationMenu :items="items" variant="link" :orientation="orientation" />
<template #right>
<UButton
icon="i-simple-icons-github"
color="neutral"
variant="ghost"
to="https://github.com/Phundrak"
target="_blank"
aria-label="GitHub"
<FooterSocialAccount
v-for="social in socialAccounts"
:key="social.label"
:icon="social.icon"
:link="social.link"
:label="social.label"
/>
</template>
</UFooter>
@@ -26,6 +25,7 @@
<script setup lang="ts">
import type { NavigationMenuItem } from '@nuxt/ui';
import { version } from '../../package.json';
import type { SocialAccount } from '~/types/social-account';
const toast = useToast();
const { isMobile } = useDevice();
@@ -35,20 +35,37 @@ const { data, error, loading } = getMeta();
const backendVersion = computed(() =>
loading.value ? 'backend.loading' : data?.value?.version || $t('backend.failed'),
);
const socialAccounts: SocialAccount[] = [
{ icon: 'i-simple-icons-mastodon', label: 'Fediverse', link: 'https://social.phundrak.com/phundrak' },
{ icon: 'i-simple-icons-gitea', label: 'Gitea', link: 'https://labs.phundrak.com/phundrak' },
{ icon: 'i-simple-icons-github', label: 'GitHub', link: 'https://github.com/Phundrak' },
{ icon: 'i-simple-icons-youtube', label: 'YouTube', link: 'https://youtube.com/@phundrak' },
];
const items = computed<NavigationMenuItem[]>(() => [
{
label: $t('footer.links.source'),
to: 'https://labs.phundrak.com/phundrak/phundrak.com',
label: $t('footer.links.source.backend'),
to: 'https://labs.phundrak.com/phundrak/bakit',
target: '_blank',
},
{
label: $t('footer.links.source.frontend'),
to: 'https://labs.phundrak.com/phundrak/framit',
target: '_blank',
},
{
label: $t('footer.links.nuxt'),
to: 'https://nuxt.com/',
target: '_blank',
},
{
label: $t('footer.links.rust'),
to: 'https://rust-lang.org/',
target: '_blank',
},
]);
watch(error, (value) => {
if (value) {
toast.add({

View File

@@ -0,0 +1,15 @@
<template>
<UButton
:icon="props.icon"
color="neutral"
variant="ghost"
:to="props.link"
target="_blank"
:aria-label="props.label"
/>
</template>
<script setup lang="ts">
import type { SocialAccount } from '~/types/social-account';
const props = defineProps<SocialAccount>();
</script>