blob: 1974d2a769e35c6258b94072ee5b689572f36f2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { TagDuplicationDetection } from "@/components/dashboard/cleanups/TagDuplicationDetention";
import { Separator } from "@/components/ui/separator";
import { useTranslation } from "@/lib/i18n/server";
import { Paintbrush, Tags } from "lucide-react";
export default async function Cleanups() {
const { t } = await useTranslation();
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 />
{t("cleanups.cleanups")}
</span>
<Separator />
<span className="flex items-center gap-1 text-xl">
<Tags />
{t("cleanups.duplicate_tags.title")}
</span>
<Separator />
<TagDuplicationDetection />
</div>
);
}
|