feat(docs): add footer attribution

This commit is contained in:
Ayo Ayco 2025-03-26 23:04:43 +01:00
parent 30483becc5
commit 9651de9cf4
2 changed files with 14 additions and 0 deletions

View file

@ -38,6 +38,9 @@ export default defineConfig({
// autogenerate: { directory: 'reference' },
// },
],
components: {
Footer: './src/components/Attribution.astro',
},
}),
],
})

View file

@ -0,0 +1,11 @@
---
import Footer from '@astrojs/starlight/components/Footer.astro'
---
<Footer />
<footer style="text-align: right; font-style: italic; padding: 0.5em 1em">
<p>
<small>A project by <a href="https://ayo.ayco.io">Ayo Ayco</a></small>
</p>
</footer>