FEAT: Added barebones input form
Some checks failed
Build and Push Latest Docker Image / build-and-push (push) Successful in 1m37s
Build and Push Development Docker Image / build-and-push (push) Successful in 1m41s
Run Unit and Integration Tests / test (push) Failing after 1m1s

This commit is contained in:
2025-06-18 20:36:50 +01:00
parent 5c9ac2ec7b
commit 0b0684a334
11 changed files with 288 additions and 6 deletions

View File

@ -1,2 +1,27 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
<script lang="ts">
import Section from '$lib/components/Section.svelte';
import Card from '$lib/components/Cards/Card.svelte';
import { toasts } from 'svelte-toasts';
import Loading from '$lib/components/Loading.svelte';
</script>
<div style="display: none;">
{toasts.add({
title: 'Welcome',
duration: 5000,
type: 'success',
placement: 'bottom-center',
showProgress: true
})}
</div>
<Section label="[Output]">
<Card>
<h2 slot="headerLeft">METAR</h2>
<h2 slot="headerRight">Results</h2>
<div slot="content" class="flex h-96 w-full items-center justify-center">
<Loading></Loading>
</div>
</Card>
</Section>