Remove auth bypass from coming-soon middleware so no one can access the in-development site in production. Remove unused login button from coming-soon page since wiki has its own OIDC login flow.
14 lines
392 B
Vue
14 lines
392 B
Vue
<template>
|
|
<div class="min-h-screen w-full flex flex-col items-center justify-center">
|
|
<a href="https://babyghosts.fund/ghost-guild" class="text-center">
|
|
<h1 class="text-display-xl font-bold mb-4">Ghost Guild</h1>
|
|
<p class="text-display-sm text-guild-400">Coming Soon</p>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
layout: "coming-soon",
|
|
});
|
|
</script>
|