diff --git a/docs/src/components/Hero.astro b/docs/src/components/Hero.astro index bf617de..618b3b8 100644 --- a/docs/src/components/Hero.astro +++ b/docs/src/components/Hero.astro @@ -1,21 +1,22 @@ --- import Default from '@astrojs/starlight/components/Hero.astro'; -import { Icon } from '@astrojs/starlight/components'; import MyIcon from './MyIcon.astro'; -const sponsors = ['ddotx']; + +const sponsorFetch = await fetch('https://ghs.vercel.app/v2/sponsors/tomalaforge'); +const { sponsors } = await sponsorFetch.json(); ---