diff --git a/index.html b/index.html index fcb9ea2..c8f87e2 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + diff --git a/package.json b/package.json index dd2036d..0321ce8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amerc-site", - "version": "0.61.0-syntax", + "version": "0.62.0-liveness", "private": true, "type": "module", "scripts": { diff --git a/src/Scene2D.jsx b/src/Scene2D.jsx index b077bd7..d9a3d38 100644 --- a/src/Scene2D.jsx +++ b/src/Scene2D.jsx @@ -7,7 +7,7 @@ import Account from './Account.jsx'; import TavernGame from './TavernGame.jsx'; import { api } from './api.js'; -const RELEASE = '0.61.0-syntax'; +const RELEASE = '0.62.0-liveness'; const NAV = [ { id: 'home', label: 'Tavern' }, @@ -86,7 +86,7 @@ function Count({ n }) { } // Fade-up as the element scrolls into view; always-visible fallback if no IO / reduced motion. -function Reveal({ children, className = '', delay = 0 }) { +function Reveal({ children, className = '', delay = 0, tag: Tag = 'div' }) { const ref = useRef(null); const [armed] = useState(() => typeof window !== 'undefined' && 'IntersectionObserver' in window && !prefersReducedMotion()); const [shown, setShown] = useState(false); @@ -95,7 +95,7 @@ function Reveal({ children, className = '', delay = 0 }) { const io = new IntersectionObserver((entries) => { entries.forEach((e) => { if (e.isIntersecting) { setShown(true); io.disconnect(); } }); }, { threshold: 0.12, rootMargin: '0px 0px -6% 0px' }); io.observe(ref.current); return () => io.disconnect(); }, [armed]); - return