diff --git a/src/app/(theme)/playground/client/page-client.tsx b/src/app/(theme)/playground/client/page-client.tsx index 34bbc5a..d93e3da 100644 --- a/src/app/(theme)/playground/client/page-client.tsx +++ b/src/app/(theme)/playground/client/page-client.tsx @@ -16,6 +16,77 @@ import { DropdownMenuItem, DropdownMenuSeparator, } from "@/components/ui/dropdown-menu"; +import { Button } from "@/components/ui/button"; + +function OverlayAround({ + x, + y, + w, + h, +}: { + x: number; + y: number; + w: number; + h: number; +}) { + return ( + <> +
+ + + + > + ); +} + +function Onboarding() { + const [onboard, setOnboard] = useState( + () => !localStorage.getItem("sqlite-onboard-v1") + ); + + if (!onboard) return null; + + return ( + <> +