added socials section

This commit is contained in:
elh 2024-06-23 18:50:50 -04:00
parent b7e9ac7bdd
commit 19b426ade7
11 changed files with 554 additions and 10 deletions

View file

@ -0,0 +1,9 @@
---
import Button from "../components/navbutton.svelte"
const { link,text }=Astro.props
---
<slot>
<Button class="SocialsButton">
<a href={link}>{text}</a>
</Button>
</slot>