This commit is contained in:
Mat12143 2025-08-02 06:07:19 +02:00
commit 9402ff7059
5 changed files with 55 additions and 5 deletions

View file

@ -1,8 +1,24 @@
<script lang="ts">
import RoomList from "$lib/components/RoomList.svelte"
</script>
<div class="flex h-full w-full items-center justify-center p-4">
<div class="">
<div class="h-full w-full flex-row justify-center p-4">
<div class="relative min-h-screen justify-center justify-items-center">
<h1>Scan your nearby rooms</h1>
<img src="/smerdoradar.gif" alt="radar" class="h-64 w-64" />
<div class="max-h-50 w-full overflow-y-auto">
<RoomList />
<RoomList />
<RoomList />
<RoomList />
<RoomList />
<RoomList />
<RoomList />
<RoomList />
<RoomList />
</div>
<div class="fixed bottom-0 right-0">
<button class="mt-4 justify-end rounded bg-blue-500 px-6 py-2 text-white transition-colors hover:bg-blue-600 active:bg-blue-700"> + </button>
</div>
</div>
</div>