summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-24 14:33:48 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-24 14:33:48 +0000
commit1eaa9a3afb6062c737dd0ce7474869bbab4bf9db (patch)
treef7e3c97a53f83f9607995b95eab51b47b21f52b9
parent45720f99bbb05939e521d692cc5119c174af78c9 (diff)
refactor: changed the index main section margins to make it more centred
This will become more important as I add more content to the homepage
-rw-r--r--src/pages/index.astro7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 5f7af3f..7d295b3 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -5,12 +5,13 @@ import OpenRing from "@/components/OpenRing.astro"
---
<Layout>
- <main class="flex flex-col min-h-svh p-6 items-center">
+ <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's Blog</h1>
+ <h1 class="text-4xl font-bold text-center mt-10">Iwan Ingman</h1>
<p class="text-lg text-center text-muted-foreground mt-4">
- This is my blog.
+ I'm a Computer Science student at Cardiff University, with a focus
+ on Software Development.
</p>
</div>