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

-