Skip to content

Commit

Permalink
chore: Remove miscellaneous section from /resources (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Dec 22, 2023
1 parent c17e650 commit 6948b31
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 36 deletions.
17 changes: 3 additions & 14 deletions src/routes/resources/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script lang="ts">
import booksFromPublisher from './booksFromPublisher.json';
import booksSelfPublished from './booksSelfPublished.json';
import extensions from './extensions.json';
import misc from './misc.json';
import editor from './editor.json';
import videoCourses from './videoCourses.json';
import youtube from './youtube.json';
</script>
Expand Down Expand Up @@ -55,10 +54,10 @@
{/each}
</ul>

<h2 id="editor-support">Editor Extensions</h2>
<h2 id="editor-support">Editor Support</h2>

<ul>
{#each extensions as { title, url, description }}
{#each editor as { title, url, description }}
<li><a href={url} target="_blank">{title}</a> - {description}</li>
{/each}
</ul>
Expand All @@ -71,16 +70,6 @@
<a href="https://github.com/janosh/awesome-sveltekit" target="_blank">awesome-sveltekit</a>
</li>
</ul>

<h2 id="misc">Miscellaneous</h2>

<ul>
{#each misc as { title, url, description }}
<li>
<a href={url} target="_blank">{title}</a>{#if description}&nbsp;- {description}{/if}
</li>
{/each}
</ul>
</div>

<style>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,10 @@
"title": "SvelteKit Snippets",
"description": "Svelte & SvelteKit Snippets for VS Code",
"url": "https://github.com/stordahl/sveltekit-snippets"
},
{
"title": "SvelteLab",
"url": "https://www.sveltelab.dev/",
"description": "Supercharged REPL for Svelte. Instantly spin up a SvelteKit project and share it with the world."
}
]
22 changes: 0 additions & 22 deletions src/routes/resources/misc.json

This file was deleted.

0 comments on commit 6948b31

Please sign in to comment.