52 lines
2.1 KiB
Plaintext
52 lines
2.1 KiB
Plaintext
---
|
|
import AdminLayout from '../../layouts/AdminLayout.astro';
|
|
---
|
|
|
|
<AdminLayout title="Jumpstart Test">
|
|
<div class="space-y-8">
|
|
<!-- Header -->
|
|
<div>
|
|
<h1 class="text-4xl font-bold text-gold-500 mb-2">🚀 Jumpstart Test</h1>
|
|
<p class="text-gray-400">Test and validate Jumpstart site deployment wizard</p>
|
|
</div>
|
|
|
|
<!-- Test Status -->
|
|
<div class="bg-titanium border border-edge-normal rounded-xl p-8">
|
|
<div class="text-center py-12">
|
|
<div class="text-6xl mb-4">🧪</div>
|
|
<h2 class="text-2xl font-bold text-gold-500 mb-4">Jumpstart Testing Suite</h2>
|
|
<p class="text-gray-400 mb-8 max-w-2xl mx-auto">
|
|
This page will test the Jumpstart wizard functionality including template selection,
|
|
configuration, and rapid deployment to production.
|
|
</p>
|
|
|
|
<div class="inline-block bg-blue-500/20 border border-blue-500/50 rounded-lg px-6 py-3 mb-6">
|
|
<p class="text-blue-400 font-semibold">🔨 Under Construction</p>
|
|
</div>
|
|
|
|
<div class="space-y-4 max-w-md mx-auto text-left">
|
|
<div class="bg-obsidian rounded-lg p-4 border border-edge-subtle">
|
|
<h3 class="font-semibold text-gold-500 mb-2">Planned Features</h3>
|
|
<ul class="text-sm text-gray-400 space-y-2">
|
|
<li>✓ Template library browser</li>
|
|
<li>✓ Configuration wizard</li>
|
|
<li>✓ DNS verification</li>
|
|
<li>✓ Deployment validation</li>
|
|
<li>✓ Health check monitoring</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="flex gap-3">
|
|
<a href="/admin/sites/jumpstart" class="flex-1 px-4 py-3 bg-gray-700 hover:bg-gray-600 text-white font-semibold rounded-lg text-center transition-all">
|
|
Jumpstart Page →
|
|
</a>
|
|
<a href="/admin" class="flex-1 px-4 py-3 bg-gold-500 hover:bg-gold-600 text-obsidian font-semibold rounded-lg text-center transition-all">
|
|
Mission Control
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AdminLayout>
|