aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-31 00:39:05 -0800
committerFuwn <[email protected]>2024-01-31 00:39:05 -0800
commitf4e31809702f357b26b3ed3b72928a9c6c73947e (patch)
tree3b8b248f10096fc6df8820da589cff66ae228a00
parentfix(activity): return temporary value if no identity (diff)
downloaddue.moe-f4e31809702f357b26b3ed3b72928a9c6c73947e.tar.xz
due.moe-f4e31809702f357b26b3ed3b72928a9c6c73947e.zip
feat(routes): dedicated landing page
-rw-r--r--src/lib/Landing.svelte1
-rw-r--r--src/routes/welcome/+page.svelte5
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 />