diff options
author | mat <github@matdoes.dev> | 2022-02-20 02:16:09 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-02-20 02:16:09 -0600 |
commit | 582409e7cb1598b65bee6d1023b77620bb3791af (patch) | |
tree | 522b3cb23451c01d097386014e9b2632aab5bfbe /src/routes/about.svelte | |
parent | 2c09443ba23b8bfbac2eb667a036e7a7fa97b3fe (diff) | |
download | skyblock-stats-582409e7cb1598b65bee6d1023b77620bb3791af.tar.gz skyblock-stats-582409e7cb1598b65bee6d1023b77620bb3791af.tar.bz2 skyblock-stats-582409e7cb1598b65bee6d1023b77620bb3791af.zip |
add inventories
Diffstat (limited to 'src/routes/about.svelte')
-rw-r--r-- | src/routes/about.svelte | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/src/routes/about.svelte b/src/routes/about.svelte deleted file mode 100644 index 569d3e1..0000000 --- a/src/routes/about.svelte +++ /dev/null @@ -1,50 +0,0 @@ -<script context="module"> - import { browser, dev } from '$app/env'; - - // we don't need any JS on this page, though we'll load - // it in dev so that we get hot module replacement... - export const hydrate = dev; - - // ...but if the client-side router is already loaded - // (i.e. we came here from elsewhere in the app), use it - export const router = browser; - - // since there's no dynamic data here, we can prerender - // it so that it gets served as a static asset in prod - export const prerender = true; -</script> - -<svelte:head> - <title>About</title> -</svelte:head> - -<div class="content"> - <h1>About this app</h1> - - <p> - This is a <a href="https://kit.svelte.dev">SvelteKit</a> app. You can make your own by typing the - following into your command line and following the prompts: - </p> - - <!-- TODO lose the @next! --> - <pre>npm init svelte@next</pre> - - <p> - The page you're looking at is purely static HTML, with no client-side interactivity needed. - Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening - the devtools network panel and reloading. - </p> - - <p> - The <a href="/todos">TODOs</a> page illustrates SvelteKit's data loading and form handling. Try using - it with JavaScript disabled! - </p> -</div> - -<style> - .content { - width: 100%; - max-width: var(--column-width); - margin: var(--column-margin-top) auto 0 auto; - } -</style> |