blob: e3afff5d915ce742857471a374a0fbda9e79d951 (
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
26
|
---
import Layout from "@/layouts/main.astro"
import BlogPosts from "@/components/BlogPosts.astro"
import OpenRing from "@/components/OpenRing.astro"
---
<Layout title="Iwan Ingman's Blog">
<main class="mx-auto flex w-full max-w-3xl flex-col gap-8 p-4 md:p-6">
<!-- Title -->
<div class="flex flex-col items-center px-4">
<h1 class="text-4xl font-bold text-center mt-10">Iwan Ingman</h1>
<p class="text-lg text-center text-muted-foreground mt-4">
I'm a Computer Science student at Cardiff University, with a focus
on Software Development.
</p>
</div>
<!-- Content -->
<!-- List Astro posts -->
<BlogPosts />
<!-- Render openring output -->
<OpenRing />
</main>
</Layout>
|