refactor: website facelift (#10823)

This commit is contained in:
Noel
2025-04-10 22:02:37 +02:00
committed by GitHub
parent 1fe53c7ca2
commit 2e3bc69602
80 changed files with 6136 additions and 2529 deletions

View File

@@ -0,0 +1,21 @@
'use client';
import { VscColorMode } from '@react-icons/all-files/vsc/VscColorMode';
import dynamic from 'next/dynamic';
import { useTheme } from 'next-themes';
import { Button } from '@/components/ui/Button';
export function ThemeSwitch() {
const { resolvedTheme, setTheme } = useTheme();
const toggleTheme = () => setTheme(resolvedTheme === 'light' ? 'dark' : 'light');
return (
<Button aria-label="Toggle theme" onPress={() => toggleTheme()} size="icon-sm" variant="filled">
<VscColorMode aria-hidden data-slot="icon" size={18} />
</Button>
);
}
export const ThemeSwitchNoSRR = dynamic(async () => ThemeSwitch, {
ssr: false,
});