🎉 Inits web
All checks were successful
Gitea Build Action / build (push) Successful in 36s

This commit is contained in:
Daniel Svitan
2025-06-04 21:38:24 +02:00
parent 7d2ad1cd49
commit 00bf392931
15 changed files with 2161 additions and 1 deletions

13
web/pages/index.vue Normal file
View File

@@ -0,0 +1,13 @@
<template>
<main class="flex items-center justify-center min-w-screen min-h-screen">
<UButton icon="material-symbols:lock" size="xl" color="primary" variant="solid">Lock</UButton>
{{ res }}
</main>
</template>
<script lang="ts" setup>
const res = await useFetch("https://door.svitan.dev/", {
method: "GET",
retry: 2,
})
</script>