feat: themes

This commit is contained in:
nikita
2026-06-12 01:23:31 +03:00
parent 8005ba7111
commit d421dc8f2c
10 changed files with 333 additions and 2 deletions
+11 -1
View File
@@ -1,3 +1,13 @@
import { ThemeToggle } from "@/modules/theme-changer/ui/Theme.toggle";
export const HomePage = () => {
return <div className="bg-red-500">Домашняя</div>;
return (
<div
style={{ backgroundColor: "var(--bg-primary)" }}
className="min-h-screen flex items-center justify-center p-4"
>
<ThemeToggle />
Домашняя
</div>
);
};