You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
473 B

<script lang="ts">
import LogViewer from "../components/LogViewer.svelte";
import SearchOptions from "../components/SearchOptions.svelte";
import TimeChart from "../components/TimeChart.svelte";
</script>
<section class="w-full">
<header>
<h1>Home</h1>
</header>
<section>
<SearchOptions />
</section>
<section class="m-10">
<TimeChart />
</section>
<section>
<LogViewer />
</section>
</section>