This repository has no description
354 B
9 lines
1---
2// overrides starlight's SocialIcons slot to add plain text links
3// before the icons; styled in styles/tangled.css
4import Default from "@astrojs/starlight/components/SocialIcons.astro";
5---
6
7<a class="header-link" href="https://tangled.org">tangled.org</a>
8<a class="header-link" href="https://blog.tangled.org">blog</a>
9<Default><slot /></Default>