Adds intro and contacts

This commit is contained in:
2026-01-15 11:02:11 +01:00
parent d7874818a3
commit a6c44cd1e6
10 changed files with 211 additions and 26 deletions

View File

@@ -0,0 +1,16 @@
<template>
<NuxtLink :to="props.link" target="_blank">
<img
:src="props.icon ?? '/icons/arrow-up-right-from-square.svg'"
alt="Arrow going to the top right from the center of a square, representing a link"
class="w-4 h-4"
/>
</NuxtLink>
</template>
<script lang="ts" setup>
const props = defineProps<{
link: string;
icon?: string;
}>();
</script>