refactor: update footer, revamp theme toggle, add head metadata, post navigation spacing
All checks were successful
build dist / build-dist (push) Successful in 35s

This commit is contained in:
z0x 2025-05-07 10:01:47 -04:00
parent 81d454824a
commit a522447570
9 changed files with 129 additions and 144 deletions

View file

@ -0,0 +1,85 @@
---
import { Button } from "@/components/ui/button";
import { Icon } from "astro-icon/components";
---
<Button id="theme-toggle" variant="outline" size="icon" title="Toggle theme">
<Icon
name="lucide:sun"
class="size-4 scale-100 rotate-0 transition-all dark:scale-0 dark:-rotate-90"
/>
<Icon
name="lucide:moon"
class="absolute size-4 scale-0 rotate-90 transition-all dark:scale-100 dark:rotate-0"
/>
<span class="sr-only">Toggle theme</span>
</Button>
<script is:inline data-astro-rerun>
const theme = (() => {
const localStorageTheme = localStorage?.getItem('theme') ?? ''
if (['dark', 'light'].includes(localStorageTheme)) {
return localStorageTheme
}
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
return 'dark'
}
return 'light'
})()
if (theme === 'light') {
document.documentElement.classList.remove('dark')
} else {
document.documentElement.classList.add('dark')
}
window.localStorage.setItem('theme', theme)
</script>
<script>
function handleToggleClick() {
const element = document.documentElement
element.classList.add('disable-transitions')
element.classList.toggle('dark')
window.getComputedStyle(element).getPropertyValue('opacity')
requestAnimationFrame(() => {
element.classList.remove('disable-transitions')
})
const isDark = element.classList.contains('dark')
localStorage.setItem('theme', isDark ? 'dark' : 'light')
}
function initThemeToggle() {
const themeToggle = document.getElementById('theme-toggle')
if (themeToggle) {
themeToggle.addEventListener('click', handleToggleClick)
}
}
initThemeToggle()
document.addEventListener('astro:after-swap', () => {
const storedTheme = localStorage.getItem('theme')
const element = document.documentElement
element.classList.add('disable-transitions')
window.getComputedStyle(element).getPropertyValue('opacity')
if (storedTheme === 'dark') {
element.classList.add('dark')
} else {
element.classList.remove('dark')
}
requestAnimationFrame(() => {
element.classList.remove('disable-transitions')
})
initThemeToggle()
})
</script>