blob: 9d04eaeb53de9049bc418c2b69a03c23c2df60db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
import Layout from "@/layouts/main.astro"
import { Button } from "@/components/ui/button"
import BlogPosts from "@/components/BlogPosts.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 />
</main>
</Layout>
|