From 9152e461a5ba8fb6480d423b4688a15407365c47 Mon Sep 17 00:00:00 2001 From: andrewdoro Date: Sat, 30 Mar 2024 12:34:43 +0200 Subject: [PATCH] feat: add dialog usage --- apps/web/app/page.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index 705ae922e..b5468b47b 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -3,6 +3,13 @@ import { Button } from "@/components/tailwind/ui/button"; import Menu from "@/components/tailwind/ui/menu"; import Link from "next/link"; import TailwindAdvancedEditor from "@/components/tailwind/advanced-editor"; +import { + Dialog, + DialogContent, + DialogTrigger, +} from "@/components/tailwind/ui/dialog"; +import { ScrollArea } from "@/components/tailwind/ui/scroll-area"; +import { BookOpen } from "lucide-react"; export default function Page() { return ( @@ -13,11 +20,25 @@ export default function Page() { + + + + + + + + + + + );