mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
19 lines
669 B
Svelte
19 lines
669 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { mdiContentDuplicate } from '@mdi/js';
|
||
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
||
|
|
import { AppRoute } from '$lib/constants';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<a href={AppRoute.DUPLICATES}>
|
||
|
|
<div class="border border-gray-300 dark:border-immich-dark-gray rounded-3xl pt-1 pb-6 dark:text-white">
|
||
|
|
<p class="text-xs font-medium p-4">ORGANIZE YOUR LIBRARY</p>
|
||
|
|
|
||
|
|
<button class="w-full hover:bg-gray-100 dark:hover:bg-immich-dark-gray flex gap-4 p-4">
|
||
|
|
<span
|
||
|
|
><Icon path={mdiContentDuplicate} class="text-immich-primary dark:text-immich-dark-primary" size="24" />
|
||
|
|
</span>
|
||
|
|
Review duplicates
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</a>
|