File size: 1,028 Bytes
7b25d55
 
 
01d6816
7b25d55
 
 
 
 
 
4832fc2
7b25d55
 
 
 
 
 
 
 
08d7ef5
7b25d55
 
 
01d6816
7b25d55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script lang="ts">
	import Card from "$lib/components/community/Card.svelte";
	import GoTop from "$lib/components/GoTop.svelte";
	import GalleryViewer from "$lib/components/community/viewer/Viewer.svelte";

  export let data
</script>

<svelte:head>
	<title>My saved generations</title>
	<meta name="description" content="LoRA Studio 🎨 is your new all-in-one generative art AI platform! Explore thousands of fun LoRA Models, share your AI-generated art and get involved with a dynamic community of creators! New models arrive every day, in direct connection with Hugging Face! πŸ€—" />
</svelte:head>

<main class="px-6 py-10 lg:px-10 lg:py-12">
	<h1 class="text-white font-semibold text-2xl">
		Saved generations ({data.total_items})
	</h1>
	<div class="mx-auto grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 2xl:grid-cols-4 gap-5 mt-8 lg:mt-10">
		{#each data.cards as card}
			<Card card={card} displayReactions={false} displayDelete={true} displayPublish={true} />
		{/each}
		<GoTop />
	</div>
	<GalleryViewer />
</main>