File size: 2,006 Bytes
e0d45d2
 
8ebf51a
e0d45d2
8ebf51a
e0d45d2
 
 
 
 
 
 
 
8ebf51a
 
 
 
 
 
e0d45d2
 
8ebf51a
e0d45d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<script lang="ts">
	import LiveBlocks from '$lib/Icons/LiveBlocks.svelte';
	import LoadingIcon from './Icons/LoadingIcon.svelte';
	export let classList = '';
	export let loading = false;
</script>

<!-- svelte-ignore a11y-click-events-have-key-events -->
<div
	on:click
	class="fixed {classList} w-screen top-0 left-0 bottom-0 right-0 max-h-screen z-50 items-center justify-center bg-black text-white bg-opacity-90 px-3 overflow-y-scroll"
>
	<div class="max-w-md">
		{#if loading}
			<div class="text-4xl text-white flex items-center mb-4">
				<LoadingIcon classList={'inline-block animate-spin p-1 mr-2'} />
				<h1 class="font-bold inline-block">Loading...</h1>
			</div>
		{/if}
		<h2 class="font-bold text-xl font-mono mb-8">Stable Difussion Multiplayer</h2>
		<p>
			Powered by Hugging Face face GPU Spaces <a
				href="https://huggingface.co/docs/hub/spaces-gpus"
				class="text-blue-400 hover:text-blue-600 underline"
				>https://huggingface.co/docs/hub/spaces-gpus</a
			>
			Diffusers
			<a
				href="https://huggingface.co/docs/diffusers/index"
				class="text-blue-400 hover:text-blue-600 underline"
				>https://huggingface.co/docs/diffusers/index</a
			>
		</p>
		<p>
			Thanks to <a
				href="https://twitter.com/lkwq007"
				target="_blank"
				rel="noopener noreferrer"
				class="text-blue-400 hover:text-blue-600 underline"
			>
				Lnyan</a
			>
			for the original outpaiting technique implemented on
			<a
				href="https://github.com/lkwq007/stablediffusion-infinity"
				target="_blank"
				rel="noopener noreferrer"
				class="text-blue-400 hover:text-blue-600 underline"
				>Stable Diffusion Infinity
			</a>.
		</p>
		<p class="mb-6">
			Runwayml Inpaiting Stable Diffusion
			<a
				href="https://github.com/runwayml/stable-diffusion"
				target="_blank"
				rel="noopener noreferrer"
			>
				https://github.com/runwayml/stable-diffusion</a
			>
		</p>
		<p class="text-base flex items-center">
			Multiplayer API by
			<LiveBlocks classList="ml-2" />
		</p>
	</div>
</div>