File tree Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -243,12 +243,6 @@ const FEATURED: {
243
243
{ name : 'felte' } ,
244
244
{ name : '@tanstack/svelte-form' }
245
245
]
246
- } ,
247
- {
248
- title : 'More' ,
249
- description :
250
- 'These are just a few highlights. See a larger <a href="https://www.sveltesociety.dev/packages">directory of packages at sveltesociety.dev</a>.' ,
251
- packages : [ ]
252
246
}
253
247
] ;
254
248
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import Category from ' ./Category.svelte' ;
3
- import { fly } from ' svelte/transition' ;
4
3
5
4
const { data } = $props ();
6
5
</script >
13
12
<meta name =" Description" content =" Packages for your Svelte and SvelteKit apps" />
14
13
</svelte:head >
15
14
16
- <h1 class =" visually-hidden" >Packages</h1 >
17
-
18
15
<div class =" page content" >
19
- <div in:fly ={{ y : 20 }}>
16
+ <header >
17
+ <h1 >Packages</h1 >
18
+ <p >
19
+ We've collected a few of our favourite packages that work well with Svelte and SvelteKit apps.
20
+ Discover more at <a href =" https://www.sveltesociety.dev/packages" >sveltesociety.dev</a >.
21
+ </p >
22
+ </header >
23
+
24
+ <div >
20
25
{#each data .homepage as { title, description, packages }}
21
26
<Category {title } {description } {packages } />
22
27
{/each }
33
38
text-wrap : balance ;
34
39
}
35
40
36
- .page :global(:where(h2 , h3 ) code ) {
37
- all : unset ;
41
+ header {
42
+ margin : 0 0 4rem 0 ;
43
+ }
44
+
45
+ h1 {
46
+ margin : 0 0 2rem 0 ;
38
47
}
39
48
</style >
You can’t perform that action at this time.
0 commit comments