diff options
Diffstat (limited to 'apps/web/app/dashboard/cleanups/page.tsx')
| -rw-r--r-- | apps/web/app/dashboard/cleanups/page.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/web/app/dashboard/cleanups/page.tsx b/apps/web/app/dashboard/cleanups/page.tsx new file mode 100644 index 00000000..ca9187ee --- /dev/null +++ b/apps/web/app/dashboard/cleanups/page.tsx @@ -0,0 +1,21 @@ +import { TagDuplicationDetection } from "@/components/dashboard/cleanups/TagDuplicationDetention"; +import { Separator } from "@/components/ui/separator"; +import { Paintbrush, Tags } from "lucide-react"; + +export default function Cleanups() { + return ( + <div className="flex flex-col gap-y-4 rounded-md border bg-background p-4"> + <span className="flex items-center gap-1 text-2xl"> + <Paintbrush /> + Cleanups + </span> + <Separator /> + <span className="flex items-center gap-1 text-xl"> + <Tags /> + Duplicate Tags + </span> + <Separator /> + <TagDuplicationDetection /> + </div> + ); +} |
