14 lines
377 B
Vue
14 lines
377 B
Vue
<template>
|
|
<div class="min-h-screen w-full flex items-center justify-center">
|
|
<a href="https://babyghosts.fund/ghost-guild" class="text-center">
|
|
<h1 class="text-5xl md:text-6xl font-bold mb-4">Ghost Guild</h1>
|
|
<p class="text-xl md:text-2xl">Coming Soon</p>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
layout: "coming-soon",
|
|
});
|
|
</script>
|