kjelsrud.dev/src/components/Footer.astro

43 lines
2.1 KiB
Text
Raw Normal View History

2023-07-19 21:31:30 +02:00
---
const today = new Date();
---
<script type="module" client:load>
const githubImage = document.getElementById('githubImage');
const spotifyImage = document.getElementById('spotifyImage');
const xxiivvwebringImage = document.getElementById('xxiivvwebringImage');
const grandlinewebringImage = document.getElementById('grandlinewebringImage');
const updateImageForTheme = () => {
const currentTheme = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
githubImage.src = currentTheme === 'dark' ? '/socials/github_light.svg' : '/socials/github_dark.svg';
spotifyImage.src = currentTheme === 'dark' ? '/socials/spotify_light.svg' : '/socials/spotify_dark.svg';
xxiivvwebringImage.src = currentTheme === 'dark' ? '/socials/xxiivvwebring_light.svg' : '/socials/xxiivvwebring_dark.svg';
grandlinewebringImage.src = currentTheme === 'dark' ? '/socials/grandlinewebring.light.svg' : '/socials/grandlinewebring.dark.svg';
};
updateImageForTheme();
const themeToggle = document.getElementById('themeToggle');
if (themeToggle) {
themeToggle.addEventListener('click', updateImageForTheme);
}
</script>
2023-07-19 21:31:30 +02:00
<footer class="flex justify-between py-5 mt-5 footerbg">
<div>Sindre Kjelsrud &copy; {today.getFullYear()}</div>
<div class="flex gap-1">
<a href="https://github.com/SindreKjelsrud" aria-label="Link to my GitHub" target="_blank">
<img id="githubImage" height="30" width="30" src="/socials/github_dark.svg" alt="GitHub"/>
</a>
<a href="https://open.spotify.com/user/kjelsrud!" aria-label="Link to my Spotify" target="_blank">
<img id="spotifyImage" height="30" width="30" src="/socials/spotify_dark.svg" alt="Spotify"/>
</a>
<a href="https://webring.kjelsrud.dev/#sid" target="_blank" rel="noopener" target="_blank">
<img id="grandlinewebringImage" height="30" width="30" src="/socials/grandlinewebring.dark.svg" alt="Grand Line Webring"/>
</a>
<a href="https://webring.xxiivv.com/#sid" target="_blank" rel="noopener" target="_blank">
<img id="xxiivvwebringImage" height="30" width="30" src="/socials/xxiivvwebring_dark.svg" alt="XXIIVV webring"/>
</a>
</div>
</footer>