feat: Update footer with social media links and improve layout

The code changes include:
- Adding social media icons for GitHub, Discord, and Mastodon.
- Updating the layout of the footer to display the logo and follow us section.
- Updating the links in the footer to point to the correct pages.
This commit is contained in:
mauro-balades
2024-09-02 17:27:46 +02:00 Unverified
parent 91193b0c72
commit 046c313373
2 changed files with 110 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
export const MastodonLogo = (props: any) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256" {...props}>
<path fill="currentColor" d="M184 32H72a40 40 0 0 0-40 40v120a40 40 0 0 0 40 40h88a8 8 0 0 0 0-16H72a24 24 0 0 1-24-24v-8h136a40 40 0 0 0 40-40V72a40 40 0 0 0-40-40m24 112a24 24 0 0 1-24 24H48V72a24 24 0 0 1 24-24h112a24 24 0 0 1 24 24Zm-24-40v32a8 8 0 0 1-16 0v-32a16 16 0 0 0-32 0v32a8 8 0 0 1-16 0v-32a16 16 0 0 0-32 0v32a8 8 0 0 1-16 0v-32a32 32 0 0 1 56-21.13A32 32 0 0 1 184 104"></path>
</svg>
)