aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/cleanups/page.tsx
blob: ca9187eeb33cac44c0b59a844f328fc28ec98ce4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
  );
}