🔨 Refactors home page

This commit is contained in:
2025-06-30 16:37:35 +02:00
parent 0334d18e23
commit 8e1bc20350
3 changed files with 44 additions and 45 deletions

View File

@@ -0,0 +1,15 @@
---
interface Props {
link: string;
icon?: string;
}
const {link, icon} = Astro.props
---
<a href={link} target="_blank">
<img src={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"
/>
</a>