From b42cc2e9c794aae631d0b7d9ed571d796ea9ff74 Mon Sep 17 00:00:00 2001
From: Tobias Leinss <7684178+leinss@users.noreply.github.com>
Date: Tue, 18 Aug 2026 14:09:00 +0200
Subject: [PATCH] Take the social link out of the navigation while its feed is
empty
The /social page renders a Bluesky author feed that currently returns zero
posts, so the navigation sent visitors to a blank page. The page and its
fetch logic stay in place; only the header entry is removed.
---
src/components/Header.astro | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 25b213d47..5d4d7ae6d 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -36,10 +36,10 @@ const staticPages = (await getCollection("staticPages"))
{`/`}
projects
-
- {`/`}
-
- social
+ {/* The social link is out of the navigation while the Bluesky feed it
+ renders is empty, so visitors are not sent to a blank page. The
+ page itself stays at /social; restore the link once there are
+ posts. */}