We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734f24f commit 5171047Copy full SHA for 5171047
frontend/src/routes/(root)/+page.svelte
@@ -1,6 +1,7 @@
1
<script lang="ts">
2
import { MetaTags } from "svelte-meta-tags";
3
import TimetableSearch from "$components/timetable/TimetableSearch.svelte";
4
+ import RoutePlannerSearch from "$components/route-planner/RoutePlannerSearch.svelte";
5
6
let type = $state("timetable");
7
</script>
@@ -28,6 +29,6 @@
28
29
{#if type === "timetable"}
30
<TimetableSearch />
31
{:else if type === "route_planner"}
- <p>There is currently no content you're looking for...</p>
32
+ <RoutePlannerSearch />
33
{/if}
34
</div>
0 commit comments