mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
* 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
19 lines
418 B
Vue
19 lines
418 B
Vue
<template>
|
|
<InitiateAuthModule>
|
|
<h1
|
|
class="mt-4 text-3xl font-bold font-display tracking-tight text-zinc-100 sm:text-5xl"
|
|
>
|
|
Sign in to Drop
|
|
</h1>
|
|
<p class="mt-6 text-base leading-7 text-zinc-400">
|
|
To get started, sign in to your Drop instance by clicking below.
|
|
</p>
|
|
</InitiateAuthModule>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: "mini",
|
|
});
|
|
</script>
|