2026-01-24 22:59:20 +00:00
|
|
|
<template>
|
|
|
|
|
<div class="min-h-screen flex items-center justify-center p-4">
|
|
|
|
|
<div class="max-w-2xl w-full">
|
|
|
|
|
<div class="glass-card p-12 pt-20 text-center animate-fade-up relative overflow-visible">
|
|
|
|
|
<!-- Logo - half in, half out of container -->
|
2026-03-02 08:34:13 +00:00
|
|
|
<div class="absolute -top-10 left-1/2 -translate-x-1/2 z-10">
|
|
|
|
|
<div class="logo-gradient-border w-20 h-20">
|
|
|
|
|
<AnimatedLogo no-border fit />
|
2026-01-24 22:59:20 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h1 class="text-4xl font-bold text-white mb-4">
|
|
|
|
|
Welcome to Archipelago
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
<p class="text-xl text-white/80 mb-12 max-w-2xl mx-auto">
|
|
|
|
|
Your personal server for a sovereign digital life
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
@click="goToOptions"
|
|
|
|
|
class="glass-button px-8 py-4 rounded-lg text-lg font-medium transition-all hover:bg-black/70 hover:border-white/30"
|
|
|
|
|
>
|
|
|
|
|
Unlock your sovereignty →
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { useRouter } from 'vue-router'
|
2026-03-02 08:34:13 +00:00
|
|
|
import AnimatedLogo from '@/components/AnimatedLogo.vue'
|
2026-01-24 22:59:20 +00:00
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
|
|
function goToOptions() {
|
2026-03-01 17:53:18 +00:00
|
|
|
router.push('/onboarding/path').catch(() => {})
|
2026-01-24 22:59:20 +00:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|