feat: add link to Mastodon

This commit is contained in:
Bart van der Braak 2024-07-02 01:19:37 +02:00
parent 05d27db42d
commit 6635699bc3
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,8 @@
<footer class="container py-6"> <footer class="container py-6">
<div class="space-y-1"> <div class="space-y-1">
<p class="text-center text-sm text-muted-foreground"> <p class="text-center text-sm text-muted-foreground">
&copy; {new Date().getFullYear()} &mdash; {siteConfig.author}. Licensed under GPL-3.0. &copy; {new Date().getFullYear()} &mdash;
<a rel="me" href={siteConfig.links.mastodon}>{siteConfig.author}</a>. Licensed under GPL-3.0.
</p> </p>
</div> </div>
<Separator class="my-2" /> <Separator class="my-2" />

View file

@ -10,6 +10,7 @@ export const siteConfig = {
links: { links: {
twitter: 'https://twitter.com/bartvdbraak', twitter: 'https://twitter.com/bartvdbraak',
linkedIn: 'https://www.linkedin.com/in/bartvdbraak', linkedIn: 'https://www.linkedin.com/in/bartvdbraak',
mastodon: 'https://mstdn.social/@bartvdbraak',
gitHubProfile: 'https://github.com/bartvdbraak', gitHubProfile: 'https://github.com/bartvdbraak',
gitHubProject: 'https://github.com/bartvdbraak/hellob.art', gitHubProject: 'https://github.com/bartvdbraak/hellob.art',
shadcnSvelte: 'https://www.shadcn-svelte.com/', shadcnSvelte: 'https://www.shadcn-svelte.com/',