aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/cleanups/page.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-04-26 10:35:36 +0100
committerMohamedBassem <me@mbassem.com>2024-04-26 10:35:36 +0100
commit9dace185acff4002aec8265fc010db49d91c7d7f (patch)
tree24ea7eaee7e99a689c6b51912e30993c74eb97dc /apps/web/app/dashboard/cleanups/page.tsx
parentd07f2c90065f53d36a3fc0e7db54c32d54a2a332 (diff)
downloadkarakeep-9dace185acff4002aec8265fc010db49d91c7d7f.tar.zst
feature: A new cleanups page to suggest ways to tidy up your bookmarks
Diffstat (limited to 'apps/web/app/dashboard/cleanups/page.tsx')
-rw-r--r--apps/web/app/dashboard/cleanups/page.tsx21
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>
+ );
+}