// Hero.jsx โ€” V10. Added nav links (Tips โ†’ /tip/, Food Crawls โ†’ /food-crawls/). // Mobile โ‰ค640px: nav link text hides, icons only. Same collapse pattern as .ig-magnet. function Hero() { const [scrolled, setScrolled] = React.useState(false); const [deepScrolled, setDeepScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => { setScrolled(window.scrollY > 20); setDeepScrolled(window.scrollY > window.innerHeight * 0.4); }; window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); const [followers, setFollowers] = React.useState(11847); React.useEffect(() => { const t = setInterval(() => setFollowers(f => f + (Math.random() > .7 ? 1 : 0)), 2200); return () => clearInterval(t); }, []); return ( <>
Jason's Grub{ e.currentTarget.replaceWith(Object.assign(document.createElement('span'),{textContent:'๐ŸŒญ',style:'font-size:40px;line-height:1'})); }} /> Follow @jasonsgrub
{/* Soft mustard glow background */}

Verified ยท Hot dog obsessed

{/* ====== The video-backed headline block ====== */}

Follow the world's best hot dog feed on Instagram.

Daily charcoal snaps, regional deep-dives, and the occasional condiment crime. Ten years. Fifty states. Zero ketchup.

Join {followers.toLocaleString()} hot dog enthusiasts ยท @jasonsgrub

Follow on Instagram SEE THE FEED โ†“
Dogs Reviewed
500+
States Toured
15
Grilling Hours
1,000+
Follow @jasonsgrub ); } window.Hero = Hero;