// Hero.jsx — Full-bleed hero section const Hero = ({ onNavigate }) => { const [scrollY, setScrollY] = React.useState(0); const [isMobile, setIsMobile] = React.useState(window.innerWidth < 768); React.useEffect(() => { const handleScroll = () => setScrollY(window.scrollY); const handleResize = () => setIsMobile(window.innerWidth < 768); window.addEventListener('scroll', handleScroll); window.addEventListener('resize', handleResize); return () => { window.removeEventListener('scroll', handleScroll); window.removeEventListener('resize', handleResize); }; }, []); return (
{/* Background photo with parallax */}
{/* Dark overlay for text legibility */}
{/* Right photo panel */}
{/* Content with fade-in */}
Coming Soon · Nara Berry Garden

奈良の田園で、
完熟ブルーベリーを味わう。

奈良県大和郡山市で準備中のブルーベリー観光農園。家族や大切な人と、ゆっくり過ごせる場所をつくっています。

{/* Opening schedule teaser */}
{[['2027年初夏', 'プレオープン'], ['2028年夏', '本オープン予定'], ['80品種以上', 'ブルーベリー']].map(([val, desc]) => (
{val}
{desc}
))}
{/* Scroll indicator */}
Scroll
); }; Object.assign(window, { Hero });