mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 03:29:16 +01:00
feat: ⚡ Add HTML spinner while loading frontend
This commit is contained in:
parent
0ddc9049ff
commit
17441bfd47
2 changed files with 59 additions and 0 deletions
12
pages/loader.vue
Normal file
12
pages/loader.vue
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<template>
|
||||
<div class="p-6 flex items-center justify-center h-dvh w-dvw">
|
||||
<div class="flex flex-col items-center justify-center gap-4">
|
||||
<Loader class="animate-spin size-8" />
|
||||
<!-- <p class="text-xl font-semibold tracking-tight">Versia Frontend</p> -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { Loader } from "lucide-vue-next";
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue