aboutsummaryrefslogtreecommitdiff
path: root/src/routes/index.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/index.svelte')
-rw-r--r--src/routes/index.svelte77
1 files changed, 71 insertions, 6 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index b90528a..46d8940 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -1,15 +1,80 @@
-<script context="module" lang="ts">
- import Header from '$lib/Header.svelte'
+<script lang="ts">
+ import Username from '$lib/minecraft/Username.svelte'
+ import SearchUser from '$lib/SearchUser.svelte'
+ import type { CleanUser } from '$lib/APITypes'
+ import donators from '../_donators.json'
export const prerender = true
+ export const hydrate = false
</script>
<svelte:head>
<title>SkyBlock Stats</title>
</svelte:head>
-<Header />
+<main>
+ <section class="title-section">
+ <h1>SkyBlock Stats</h1>
+ <SearchUser>
+ <button>View Profiles</button>
+ </SearchUser>
+ </section>
-<section>
- <h1>SkyBlock Stats</h1>
-</section>
+ <hr style="margin: 25vh 0 2em 0" />
+
+ <section>
+ <h3>Other SkyBlock tools</h3>
+ <ul>
+ <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>.
+ </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>Join the <a href="https://discord.gg/nWQKpzPCPJ">Forum Sweats</a> Discord server.</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="https://twemoji.twitter.com/">Twemoji</a></p>
+ <p>Font: <a href="https://brailleinstitute.org/freefont">Atkinson Hyperlegible</a></p>
+ </section>
+</main>
+
+<style>
+ .title-section {
+ margin: 0 auto;
+ width: fit-content;
+ }
+
+ #donators p {
+ margin: 0;
+ }
+</style>