feat: Add ColorSchemeToggle component to HomePage for theme switching functionality

This commit is contained in:
2025-05-09 01:15:19 +02:00
parent b087271255
commit 0d1ffcd1ff
2 changed files with 4 additions and 0 deletions
+4
View File
@@ -1,5 +1,7 @@
import { AppShellWithMenu } from '../components/Appshell/Appshell';
import { Welcome } from '@/components/Welcome/Welcome';
import { ColorSchemeToggle } from '@/components/ColorSchemeToggle/ColorSchemeToggle';
export function HomePage() {
return (
@@ -12,6 +14,8 @@ export function HomePage() {
<p>This is the home page content.</p>
</div>
<ColorSchemeToggle></ColorSchemeToggle>
</AppShellWithMenu>
);