summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 5f7af3f3a7f5b2a81a629d2256c53072badc252b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
import Layout from "@/layouts/main.astro"
import BlogPosts from "@/components/BlogPosts.astro"
import OpenRing from "@/components/OpenRing.astro"
---

<Layout>
  <main class="flex flex-col min-h-svh p-6 items-center">
    <!-- Title -->
    <div class="flex flex-col items-center">
      <h1 class="text-4xl font-bold text-center mt-10">Iwan Ingman's Blog</h1>
      <p class="text-lg text-center text-muted-foreground mt-4">
        This is my blog.
      </p>
    </div>

    <!-- Content -->
    <!-- List Astro posts -->
    <BlogPosts />

    <!-- Render openring output -->
    <OpenRing />
  </main>
</Layout>