diff --git a/src/content/homelab/woodpecker.md b/src/content/homelab/woodpecker.md
index f034aad..f692abf 100644
--- a/src/content/homelab/woodpecker.md
+++ b/src/content/homelab/woodpecker.md
@@ -6,7 +6,7 @@ pubDate: 08.03.2024
## Self hosted CI/CD!
-Yesterday, i decided that i was tired of using Github Actions to deploy my code from Github. So i decided to self host my own CI/CD.
+Yesterday, i decided that i was tired of using Github Actions to deploy my code from Github. So i decided to self host my own CI/CD. This is mostly because i am not comfortable having port 22 on my web server be publicly accessible on the internet.
To do this, i went down quite the rabbit hole. First i looked at [TeamCity](https://www.jetbrains.com/teamcity/) from JetBrains as this is what i use at work. It looked promising, however i decided it was too complex and had too many features i did not really care about.
diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro
index 9b32973..d287a33 100644
--- a/src/pages/blog/index.astro
+++ b/src/pages/blog/index.astro
@@ -83,11 +83,25 @@ const posts = (await getCollection('blog')).sort(
font-size: 1.563em;
}
}
+ blogheader {
+ text-align: center;
+ }
+
+ Blog
+
+ This page contains a blog about nothing and everything going on with me.
+ I will probably post mostly random stuff or opinion pieces. What it will be about i have no idea.
+ So stay tuned!
+
+
+ Click here to read posts about my homelab!
+
+
{
diff --git a/src/styles/global.css b/src/styles/global.css
index 18bf415..26b13c2 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -100,7 +100,7 @@ b {
font-weight: 700;
}
a {
- color: var(--accent);
+ color: white;
}
a:hover {
color: var(--accent);