feat(client): add shadcn theme

- Added Nix theme
- Defaults to dark mode

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2025-12-19 15:41:46 +08:00
committed by Asai Neko
parent 2148e47b10
commit 44616895cf
4 changed files with 218 additions and 65 deletions

View File

@@ -1,5 +1,11 @@
import { ThemeProvider } from '@/components/theme-provider';
function App() {
return <p>Hello world</p>;
return (
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<p>Hello world</p>
</ThemeProvider>
);
}
export { App };