summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 7d295b39dad93548519df3032f750a02fa0a30c4 (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>
  <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">
      <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>