Midday / apps /dashboard /src /components /change-theme.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@midday/ui/card";
import { ThemeSwitch } from "@/components/theme-switch";
export function ChangeTheme() {
return (
<Card>
<CardHeader>
<CardTitle>Appearance</CardTitle>
<CardDescription>
Customize how Midday looks on your device.
</CardDescription>
</CardHeader>
<CardContent>
<div className="w-[240px]">
<ThemeSwitch />
</div>
</CardContent>
</Card>
);
}