working on the frontend, adding torrent page, working on show directory, working on the api

This commit is contained in:
maxDorninger
2025-05-11 10:59:38 +02:00
parent 180771882d
commit ef7b020043
164 changed files with 5389 additions and 1594 deletions

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import {Separator} from "$lib/components/ui/separator/index.js";
import {cn} from "$lib/utils.js";
import type {ComponentProps} from "svelte";
import {Separator} from '$lib/components/ui/separator/index.js';
import {cn} from '$lib/utils.js';
import type {ComponentProps} from 'svelte';
let {
ref = $bindable(null),
@@ -11,8 +11,8 @@
</script>
<Separator
{...restProps}
bind:ref
class={cn("bg-sidebar-border mx-2 w-auto", className)}
data-sidebar="separator"
class={cn('mx-2 w-auto bg-sidebar-border', className)}
{...restProps}
/>