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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<script lang="ts" context="module">
import type { Load } from '@sveltejs/kit'
import { API_URL } from '$lib/api'
export const load: Load = async ({ params, fetch, session }) => {
return {
props: {
loggedIn: session.sid !== undefined,
},
}
}
</script>
<script lang="ts">
import Username from '$lib/minecraft/Username.svelte'
import SearchUser from '$lib/SearchUser.svelte'
import donators from '../_donators.json'
import Head from '$lib/Head.svelte'
import Emoji from '$lib/Emoji.svelte'
import LoginButton from '$lib/LoginButton.svelte'
// export const prerender = true
export const hydrate = false
export let loggedIn: boolean
</script>
<svelte:head>
<title>SkyBlock Stats</title>
</svelte:head>
<Head
title="SkyBlock Stats"
description="Check SkyBlock stats, see leaderboards, mayors, and way more."
/>
<main>
<LoginButton {loggedIn} />
<section class="title-section">
<h1>SkyBlock Stats</h1>
<SearchUser>
<button>View Profiles</button>
</SearchUser>
</section>
<hr style="margin: 25vh 0 2em 0" />
<section>
<h2>Other SkyBlock tools</h2>
<ul id="other-tools-list">
<li><a>Auction prices (coming soon)</a></li>
<li><a href="/leaderboards">Leaderboards</a></li>
<li><a>Bazaar (coming soon)</a></li>
<li><a href="/chat">Fake chat generator</a></li>
<li><a href="https://skyblock-npcs.matdoes.dev">NPC Skin Stealer</a></li>
<li><a href="/election">Mayor Election Status</a></li>
</ul>
</section>
<section id="donators">
<h2>Donators</h2>
<p>
Thank you to these people for
<a href="https://ko-fi.com/matdoesdev" target="_blank">donating</a>. <Emoji value="❤" />
</p>
<ul>
{#each donators as donator}
<li><Username player={donator} headType="2d" hyperlinkToProfile /></li>
{/each}
</ul>
</section>
<section>
<h2>Info</h2>
<p>Website made by <a href="https://matdoes.dev">mat</a>.</p>
<p>
Resource packs: <a href="//packshq.com">PacksHQ</a> (default),
<a href="//hypixel.net/threads/2138599">Furfsky</a>,
<a href="//furfsky.net">Furfsky Reborn</a>,
<a href="//hypixel.net/threads/2239953">Ectoplasm</a>,
<a href="//hypixel.net/threads/3470904">RNBW</a>,
<a href="//hypixel.net/threads/4174260">Hypixel+</a>,
<a href="//hypixel.net/threads/3597207">Worlds and Beyond</a>.
</p>
<p>
Minecraft skin APIs: <a href="//mc-heads.net">mc-heads.net</a> for 3d renders and
<a href="//mc-crafatar.com">crafatar.com</a> for 2d heads.
</p>
<p>Emojis: <a href="//twemoji.twitter.com/">Twemoji</a>.</p>
<p>Font: <a href="//brailleinstitute.org/freefont">Atkinson Hyperlegible</a>.</p>
</section>
</main>
<style>
h1 {
text-align: center;
}
.title-section {
margin: 0 auto;
width: fit-content;
}
#donators p {
margin: 0;
}
li {
padding: 0.2em 0;
}
</style>
|