diff --git a/languages/en.json b/languages/en.json
index a993d19..ebf9016 100644
--- a/languages/en.json
+++ b/languages/en.json
@@ -3,6 +3,24 @@
"home_title": "Hello! I'm Bradley Shellnut.",
"home_about": "I'm a full stack software engineer currently working on Java Spring, PostgreSQL, and React / Angular JS.",
"home_learning": "At home you can usually find me learning new things and working with SvelteKit, Next.js, and Gatsby.",
+ "home_other_about_me": "Or you may find me jamming out to music 🎶, hiking ⛰️, making ",
+ "cocktails": "cocktails",
+ "home_fun_with_cats": " 🍸, or having fun with my cats. 🐈",
+ "home_check_me_out": "Check me out on",
+ "contact_through": "Contact through",
+ "read_more": "or read more",
+ "about_me": "about me",
+ "music_currently_listening": "Currently listening to",
+ "music_link_to": "Link to",
+ "music_by": "by",
+ "music_album_art_alt": "Album art for",
+ "articles_favorite_articles": "Favorite Articles",
+ "articles_favorite_tech_articles": "Favorite Tech Articles",
+ "articles_reading_time": "Reading time",
+ "articles_minute": "minute",
+ "articles_minutes": "minutes",
+ "articles_tags": "Tags",
+ "articles_more_articles": "more articles",
"nav_home": "Home",
"nav_about": "About",
"nav_about_link": "about",
diff --git a/languages/es.json b/languages/es.json
index 8a93ecf..0161d2c 100644
--- a/languages/es.json
+++ b/languages/es.json
@@ -3,6 +3,24 @@
"home_title": "!Hola! Me llamo Bradley Shellnut.",
"home_about": "Soy un ingeniero de software de pila completa que actualmente trabaja en Java Spring, PostgreSQL y React / Angular JS.",
"home_learning": "En casa por lo general me puedes encontrar aprendiendo cosas nuevas y trabajando con SvelteKit, Next.js, y Gatsby.",
+ "home_other_about_me": "O puede que me encuentres improvisando música 🎶, haciendo senderismo ⛰️, haciendo ",
+ "cocktails": "cócteles",
+ "home_fun_with_cats": "🍸, o divertirme con mis gatos. 🐈",
+ "home_check_me_out": "Visítame en LinkedIn , Github , o lee más sobre mí",
+ "contact_through": "Contacto a través de",
+ "read_more": "o leer más",
+ "about_me": "sobre mí",
+ "music_currently_listening": "Actualmente escuchando",
+ "music_link_to": "Enlace",
+ "music_by": "por",
+ "music_album_art_alt": "Carátula del álbum de",
+ "articles_favorite_articles": "Artículos favoritos",
+ "articles_favorite_tech_articles": "Artículos tecnológicos favoritos",
+ "articles_reading_time": "Tiempo de lectura",
+ "articles_minute": "minuto",
+ "articles_minutes": "minutos",
+ "articles_tags": "Etiquetas",
+ "articles_more_articles": "más artículos",
"nav_home": "Inicio",
"nav_about": "Acerca de",
"nav_about_link": "acerca-de",
diff --git a/src/hooks.server.ts b/src/hooks.server.ts
index b683fdb..6216011 100644
--- a/src/hooks.server.ts
+++ b/src/hooks.server.ts
@@ -1,4 +1,4 @@
-import { getTextDirection } from "$lib/i18n"
+import { getTextDirection } from "$root/lib/i18n-routing"
import { sourceLanguageTag, type AvailableLanguageTag } from "$paraglide/runtime"
/*
diff --git a/src/lib/I18NHeader.svelte b/src/lib/I18NHeader.svelte
new file mode 100644
index 0000000..37de940
--- /dev/null
+++ b/src/lib/I18NHeader.svelte
@@ -0,0 +1,11 @@
+
+
+
+ {#each availableLanguageTags as lang}
+
+ {/each}
+
diff --git a/src/lib/components/Articles.svelte b/src/lib/components/Articles.svelte
index ddd7a4d..7bf69e4 100644
--- a/src/lib/components/Articles.svelte
+++ b/src/lib/components/Articles.svelte
@@ -1,15 +1,19 @@
-
Favorite Articles
+
{m.articles_favorite_articles()}
{#each articles as article (article.hashed_url)}
@@ -29,9 +33,9 @@
- Reading time: {article.reading_time} minutes
+ {m.articles_reading_time()}: {article.reading_time} {article.reading_time === 1 ? m.articles_minute() : m.articles_minutes()}
diff --git a/src/lib/components/bandcamp/index.svelte b/src/lib/components/bandcamp/index.svelte
index a2db4bd..faa7ba2 100644
--- a/src/lib/components/bandcamp/index.svelte
+++ b/src/lib/components/bandcamp/index.svelte
@@ -1,9 +1,8 @@