Add src/pages/index.astro from template
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending

This commit is contained in:
jordan 2026-01-29 08:37:49 +00:00
parent 492d048132
commit a24ab0b1c6

33
src/pages/index.astro Normal file
View File

@ -0,0 +1,33 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="homepage">
<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">
homepage
</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/homepage.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>