Skip to content

Commit

Permalink
Merge branch 'main' into tags-rework
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Dec 23, 2023
2 parents 9c06da1 + 8dd141c commit f1cdfbf
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 42 deletions.
24 changes: 21 additions & 3 deletions src/routes/packages/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,11 +408,12 @@
},
{
"category": "Design System",
"description": "Bootstrap 4 components for Svelte",
"npm": "sveltestrap",
"description": "Bootstrap components for Svelte 4+",
"npm": "@sveltestrap/sveltestrap",
"tags": ["components and libraries"],
"title": "sveltestrap",
"repository": "https://github.com/bestguy/sveltestrap"
"url": "https://sveltestrap.js.org",
"repository": "https://github.com/sveltestrap/sveltestrap"
},
{
"category": "User Interaction",
Expand Down Expand Up @@ -3195,5 +3196,22 @@
"npm": "konsta",
"category": "Design System",
"tags": ["components and libraries"]
},
{
"title": "@prismicio/svelte",
"repository": "https://github.com/prismicio/prismic-svelte",
"description": "Svelte components to render content from the Prismic API",
"npm": "@prismicio/svelte",
"category": "Integration",
"tags": ["integrations", "images", "layout and structure"]
},
{
"title": "@slicemachine/adapter-sveltekit",
"url": "https://prismic.io/docs/svelte",
"repository": "https://github.com/prismicio/slice-machine/tree/master/packages/adapter-sveltekit",
"description": "Turn your SvelteKit project into a website builder with Prismic's Slice Machine",
"npm": "@slicemachine/adapter-sveltekit",
"category": "Integration",
"tags": ["integrations"]
}
]
23 changes: 6 additions & 17 deletions src/routes/resources/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<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>

<div>
<h2>Books</h2>
<h2 id="books">Books</h2>

<div>There are a few books from major publishers:</div>
<ul>
Expand All @@ -28,7 +27,7 @@
{/each}
</ul>

<h2>Videos</h2>
<h2 id="videos">Videos</h2>

<div>Rich Harris, the creator of Svelte, taught a course:</div>
<ul>
Expand All @@ -55,32 +54,22 @@
{/each}
</ul>

<h2>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>

<h2>Discovery</h2>
<h2 id="discovery">Discovery</h2>

<ul>
<li>
For a curated list of SvelteKit examples in the wild, see
<a href="https://github.com/janosh/awesome-sveltekit" target="_blank">awesome-sveltekit</a>
</li>
</ul>

<h2>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 f1cdfbf

Please sign in to comment.