Skip to content

Commit a2913f4

Browse files
hhvrcLucHeart
andauthored
Move sharelinks to shares (#104)
Co-authored-by: LucHeart <[email protected]>
1 parent 9b2e60e commit a2913f4

File tree

7 files changed

+36
-0
lines changed

7 files changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<script lang="ts">
2+
import { Button } from "$lib/components/ui/button/index.js";
3+
import * as Card from '$lib/components/ui/card/index.js';
4+
import { ArrowBigRight } from "@lucide/svelte";
5+
</script>
6+
7+
<div class="container my-8 grid grid-cols-1 gap-4 md:grid-cols-2">
8+
<Card.Root>
9+
<Card.Header>
10+
<Card.Title>User Shares</Card.Title>
11+
<Card.Description>Manage Shockers Shared with other Users directly</Card.Description>
12+
</Card.Header>
13+
<Card.Content>
14+
<p>Card Content</p>
15+
</Card.Content>
16+
<Card.Footer>
17+
<Button class="ml-auto w-15">
18+
<ArrowBigRight />
19+
</Button>
20+
</Card.Footer>
21+
</Card.Root>
22+
<Card.Root>
23+
<Card.Header>
24+
<Card.Title>Share Links</Card.Title>
25+
<Card.Description>Active Share Links</Card.Description>
26+
</Card.Header>
27+
<Card.Content>
28+
<p>Card Content</p>
29+
</Card.Content>
30+
<Card.Footer>
31+
<Button class="ml-auto w-15" href="/shares/links">
32+
<ArrowBigRight />
33+
</Button>
34+
</Card.Footer>
35+
</Card.Root>
36+
</div>

0 commit comments

Comments
 (0)