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 ( + <> + +
+

There is more!

+ + +
+ + ); +} export default function PlaygroundEditorBody({ preloadDatabase, @@ -255,6 +326,7 @@ export default function PlaygroundEditorBody({ <>