diff --git a/favicon.svg b/favicon.svg
new file mode 100644
index 0000000..1b6f20c
--- /dev/null
+++ b/favicon.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/public/favicon.svg b/public/favicon.svg
index 0f39062..1b6f20c 100644
--- a/public/favicon.svg
+++ b/public/favicon.svg
@@ -1,13 +1,7 @@
-
+
+
\ No newline at end of file
diff --git a/src/content/blog/back-again.md b/src/content/blog/back-again.md
index 59eadcb..710b49e 100644
--- a/src/content/blog/back-again.md
+++ b/src/content/blog/back-again.md
@@ -3,6 +3,8 @@ pubDatetime: 2024-10-18
title: Back Again
description: "Life is uncertain, but one thing remains constant- my need to keep my brain engaged."
featured: false
+tags:
+ - personal
---
> This is going to be a brief post; I have not gathered my thoughts on my current career situation, however that will come.
diff --git a/src/content/blog/designing-projects.md b/src/content/blog/designing-projects.md
index 3a3e116..824225c 100644
--- a/src/content/blog/designing-projects.md
+++ b/src/content/blog/designing-projects.md
@@ -4,4 +4,7 @@ pubDatetime: 2024-12-24
description: Listless and needing focus, I found the perfect repo to build my skills.
featured: true
draft: true
+tags:
+ - go
+ - meta
---
diff --git a/src/content/blog/go-blueprint-easy.md b/src/content/blog/go-blueprint-easy.md
index b4dc94f..8df24f2 100644
--- a/src/content/blog/go-blueprint-easy.md
+++ b/src/content/blog/go-blueprint-easy.md
@@ -3,6 +3,8 @@ pubDatetime: 2024-12-28
title: "Go Blueprint: An Easy Way to Scoffold Your Go Project"
description: Melkeydev created a useful tool to get your project up and running.
featured: true
+tags:
+ - go
---
Starting a new Go project is cumbersome; you have to create multiple directories with subdirectories, different modules depending on the thing you're building, and more.
diff --git a/src/content/blog/go-project-structure.md b/src/content/blog/go-project-structure.md
index c00e7cb..aecc357 100644
--- a/src/content/blog/go-project-structure.md
+++ b/src/content/blog/go-project-structure.md
@@ -2,6 +2,8 @@
pubDatetime: 2024-04-01
title: Go Project Structure for gURL
description: Helpful Go tip.
+tags:
+ - go
---
Over the past week I've been working on changing the structure of gURL.
diff --git a/src/content/blog/gurl-cli.md b/src/content/blog/gurl-cli.md
index c46a545..4d5606d 100644
--- a/src/content/blog/gurl-cli.md
+++ b/src/content/blog/gurl-cli.md
@@ -2,6 +2,8 @@
pubDatetime: 2024-03-24
title: "gURL: A cURL Wrapper Written in Go"
description: Moving on from frontend to something new.
+tags:
+ - go
---
Briefly: I am writing a CLI tool that fetches info from GitHub's REST API as a wrapper around cURL.
diff --git a/src/content/blog/hello.md b/src/content/blog/hello.md
index 870c0c7..41443a4 100644
--- a/src/content/blog/hello.md
+++ b/src/content/blog/hello.md
@@ -2,6 +2,8 @@
pubDatetime: 2024-03-17
title: "Hello, y'all"
description: Introductions.
+tags:
+ - meta
---
This is a learning and accountability blog.
diff --git a/src/content/blog/neovim-setup.md b/src/content/blog/neovim-setup.md
new file mode 100644
index 0000000..10a9b90
--- /dev/null
+++ b/src/content/blog/neovim-setup.md
@@ -0,0 +1,9 @@
+---
+pubDatetime: 2025-01-05
+title: "Neovim Setup"
+description: Switching from VS Code to Neovim was difficult but worth it.
+featured: true
+draft: true
+tags:
+ - neovim
+---
diff --git a/src/content/blog/this-week-update.md b/src/content/blog/this-week-update.md
index d600754..acb388b 100644
--- a/src/content/blog/this-week-update.md
+++ b/src/content/blog/this-week-update.md
@@ -3,6 +3,9 @@ pubDatetime: 2024-04-23
title: This Week's Update
description: Brief note.
featured: true
+tags:
+ - updates
+ - meta
---
Things I have been up to while off LinkedIn:
diff --git a/src/styles/base.css b/src/styles/base.css
index 83aaae9..b735c68 100644
--- a/src/styles/base.css
+++ b/src/styles/base.css
@@ -13,12 +13,12 @@
--color-border: 124, 173, 255;
}
html[data-theme="dark"] {
- --color-fill: 0, 1, 35;
- --color-text-base: 234, 237, 243;
- --color-accent: 97, 123, 255;
- --color-card: 33, 34, 83;
- --color-card-muted: 12, 14, 79;
- --color-border: 48, 63, 138;
+ --color-fill: 53, 54, 64;
+ --color-text-base: 233, 237, 241;
+ --color-card: 75, 76, 89;
+ --color-card-muted: 113, 85, 102;
+ --color-border: 134, 67, 107;
+ --color-accent: 210, 104, 120;
}
#sun-svg,
html[data-theme="dark"] #moon-svg {
@@ -110,7 +110,7 @@
}
.prose a {
- color:#D26878 !important;
+ color:#d26878 !important;
text-decoration: underline !important;
text-decoration-style: solid !important;
word-break: break-all;