Files
drop-app/main/pages/auth/signedout.vue
DecDuck 3b830e2a44 Move frontend to main folder (#109)
* feat: small refactor

* fix: appimage build script

* fix: add NO_STRIP to AppImage build

* fix: build and dev mode from refactor

* fix: submodule step 1

* fix: submodules step 2
2025-08-05 16:09:47 +10:00

19 lines
429 B
Vue

<template>
<InitiateAuthModule>
<h1
class="mt-4 text-3xl font-bold font-display tracking-tight text-zinc-100 sm:text-5xl"
>
You've been signed out
</h1>
<p class="mt-6 text-base leading-7 text-zinc-400">
Unfortunately, you've been signed out. To sign back in, click below.
</p>
</InitiateAuthModule>
</template>
<script setup lang="ts">
definePageMeta({
layout: "mini",
});
</script>