diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/Landing.svelte | 1 | ||||
| -rw-r--r-- | src/routes/welcome/+page.svelte | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/Landing.svelte b/src/lib/Landing.svelte index cc4dad7c..a8593a5b 100644 --- a/src/lib/Landing.svelte +++ b/src/lib/Landing.svelte @@ -298,7 +298,6 @@ .item-content { flex: 1 1 50%; - padding: 0 1rem; } .item-description { diff --git a/src/routes/welcome/+page.svelte b/src/routes/welcome/+page.svelte new file mode 100644 index 00000000..296ce30e --- /dev/null +++ b/src/routes/welcome/+page.svelte @@ -0,0 +1,5 @@ +<script> + import Landing from '$lib/Landing.svelte'; +</script> + +<Landing /> |