Skip to content

Commit 5171047

Browse files
committed
feat(frontend): add route planner design
1 parent 734f24f commit 5171047

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/routes/(root)/+page.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import { MetaTags } from "svelte-meta-tags";
33
import TimetableSearch from "$components/timetable/TimetableSearch.svelte";
4+
import RoutePlannerSearch from "$components/route-planner/RoutePlannerSearch.svelte";
45
56
let type = $state("timetable");
67
</script>
@@ -28,6 +29,6 @@
2829
{#if type === "timetable"}
2930
<TimetableSearch />
3031
{:else if type === "route_planner"}
31-
<p>There is currently no content you're looking for...</p>
32+
<RoutePlannerSearch />
3233
{/if}
3334
</div>

0 commit comments

Comments
 (0)