23 lines
619 B
Vue
23 lines
619 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>
|
|
<button
|
|
class="mt-12 text-sm text-guild-500 hover:text-guild-300 transition-colors"
|
|
@click="openLoginModal"
|
|
>
|
|
Member login
|
|
</button>
|
|
<LoginModal />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
layout: "coming-soon",
|
|
});
|
|
|
|
const { openLoginModal } = useLoginModal();
|
|
</script>
|