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

@@ -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>