From e96d0f36ebc8c4ced0f2b44030939dff5f83368b Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Wed, 28 Jan 2026 17:41:28 +0100 Subject: [PATCH] fix: replace /, and/ with /and/ --- public/manifest.json | 2 +- src/components/TableOfContents.astro | 25 +++++++++--- src/content/bio/my-story.mdx | 28 +++++++------- src/content/blog/from-angular-to-astro.mdx | 38 +++++++++---------- .../blog/going-back-to-fosdem-2026.mdx | 26 ++++++------- src/content/blog/welcome-to-my-blog.md | 2 +- src/content/blog/why-i-write-these-posts.mdx | 4 +- src/layouts/BaseLayout.astro | 2 +- src/pages/blog.astro | 2 +- src/pages/rss.xml.ts | 2 +- 10 files changed, 72 insertions(+), 59 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 8d047de..756a7c0 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,7 +1,7 @@ { "name": "Lorenzo Iovino - Software Engineer", "short_name": "Lorenzo Iovino", - "description": "Software Engineer based in Sicily. Passionate about technology, remote work, and life balance.", + "description": "Software Engineer based in Sicily. Passionate about technology, remote work and life balance.", "start_url": "/", "display": "standalone", "background_color": "#1e3a8a", diff --git a/src/components/TableOfContents.astro b/src/components/TableOfContents.astro index 035a791..f91c208 100644 --- a/src/components/TableOfContents.astro +++ b/src/components/TableOfContents.astro @@ -91,6 +91,9 @@ const tocHeadings = headings.filter((h) => h.depth <= 3); class="mobile-toc-link block py-2.5 px-3 text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-all duration-200" data-mobile-heading={heading.slug} > + {heading.depth === 3 && ( + + )} {heading.text} @@ -108,22 +111,26 @@ const tocHeadings = headings.filter((h) => h.depth <= 3);

On This Page

-