diff options
Diffstat (limited to 'src/routes/index.svelte')
-rw-r--r-- | src/routes/index.svelte | 52 |
1 files changed, 2 insertions, 50 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 68311dd..524df13 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,9 +1,5 @@ <script context="module" lang="ts"> - export const prerender = true; -</script> - -<script lang="ts"> - import Counter from '$lib/Counter.svelte'; + export const prerender = true </script> <svelte:head> @@ -11,49 +7,5 @@ </svelte:head> <section> - <h1> - <div class="welcome"> - <picture> - <source srcset="svelte-welcome.webp" type="image/webp" /> - <img src="svelte-welcome.png" alt="Welcome" /> - </picture> - </div> - - to your new<br />SvelteKit app - </h1> - - <h2> - try editing <strong>src/routes/index.svelte</strong> - </h2> - - <Counter /> + <h1>SkyBlock Stats</h1> </section> - -<style> - section { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - flex: 1; - } - - h1 { - width: 100%; - } - - .welcome { - position: relative; - width: 100%; - height: 0; - padding: 0 0 calc(100% * 495 / 2048) 0; - } - - .welcome img { - position: absolute; - width: 100%; - height: 100%; - top: 0; - display: block; - } -</style> |