feat: add deep link customization

This commit is contained in:
Bhavishy
2026-04-08 01:18:19 +05:30
parent 613cad31c0
commit 1d6e2fab59
8 changed files with 302 additions and 30 deletions
+16
View File
@@ -0,0 +1,16 @@
<script lang="ts">
import {page} from "$app/stores"
import {goto} from "$app/navigation"
import Dialog from "@lib/components/Dialog.svelte"
import IntentHandler from "@app/components/IntentHandler.svelte"
const children = {
component: IntentHandler,
props: {
params: $page.url.searchParams,
back: () => goto("/home"),
},
}
</script>
<Dialog {children} onClose={() => goto("/home")} />