From 5076f8f09179fe54903992e485f66b9e2d0accbd Mon Sep 17 00:00:00 2001 From: Tomas Prokop Date: Sun, 19 Jul 2026 00:06:20 +0200 Subject: [PATCH] Update Follow section: trip is live now, link to Instagram The 'Follow Along' section still said 'coming July 2026' for a live map that already ships on the Route section. Since we now share live location on the site and post stories on Instagram (@networg_expedition) rather than build a separate live-map feature for this section, replace the stale placeholder with a live-now badge and CTAs to the Instagram profile and to the live map above. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- src/sections/FollowSection.tsx | 60 ++++++++++++++++++++++++++++++---- 1 file changed, 54 insertions(+), 6 deletions(-) diff --git a/src/sections/FollowSection.tsx b/src/sections/FollowSection.tsx index da279be..4a756e0 100644 --- a/src/sections/FollowSection.tsx +++ b/src/sections/FollowSection.tsx @@ -1,4 +1,7 @@ -import { Radio } from 'lucide-react'; +import { MapPinned } from 'lucide-react'; + +const INSTAGRAM_HANDLE = 'networg_expedition'; +const INSTAGRAM_URL = `https://www.instagram.com/${INSTAGRAM_HANDLE}/`; export default function FollowSection() { return ( @@ -11,17 +14,62 @@ export default function FollowSection() { WATCH THE TRIP -
- +
+ + + + + + Live now + +

- Live map and stories - coming July 2026 + The trip is happening right now.

-

- We'll share live location during the trip. Photos and updates as things happen. Check back in July. +

+ Track everyone's live location on the map above, and follow{' '} + @{INSTAGRAM_HANDLE} on + Instagram for photos and stories as they happen.

+ +
); } +function InstagramIcon({ size = 18 }: { size?: number }) { + return ( + + ); +} +