e2e-test-8672/src/pages/index.astro
jordan c7109e6a6b
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Add src/pages/index.astro from template
2026-01-29 23:17:59 +00:00

34 lines
1.1 KiB
Plaintext

---
import Layout from '../layouts/Layout.astro';
---
<Layout title="e2e-test-8672">
<main class="min-h-screen bg-gradient-to-br from-slate-900 to-slate-800">
<div class="container mx-auto px-4 py-16">
<div class="text-center">
<h1 class="text-5xl font-bold text-white mb-6">
e2e-test-8672
</h1>
<p class="text-xl text-slate-300 mb-8 max-w-2xl mx-auto">
Welcome to your new Astro landing page. Edit this file at
<code class="bg-slate-700 px-2 py-1 rounded">src/pages/index.astro</code>
</p>
<div class="flex gap-4 justify-center">
<a
href="https://docs.astro.build"
class="px-6 py-3 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition"
>
Read the Docs
</a>
<a
href="https://git.threesix.ai/jordan/e2e-test-8672.git"
class="px-6 py-3 bg-slate-700 text-white rounded-lg hover:bg-slate-600 transition"
>
View Source
</a>
</div>
</div>
</div>
</main>
</Layout>