feat(dashboard): implement light scenes
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m9s

This commit is contained in:
2025-10-30 02:48:06 +00:00
parent 5db9d6b139
commit 1a2bea01d1
4 changed files with 409 additions and 286 deletions

View File

@@ -0,0 +1,14 @@
import cn from "./lib/cn"
export function Tile({ children, className }: { children?: React.ReactNode; className?: string }) {
return (
<div
className={cn(
"relative rounded-xl bg-neutral-200 dark:bg-neutral-900 flex flex-col justify-end items-start",
className,
)}
>
{children}
</div>
)
}