function Reveal({children,style}){ const ref=React.useRef(null); const [visible,setVisible]=React.useState(false); React.useEffect(()=>{ const el=ref.current; if(!el)return; const obs=new IntersectionObserver(([e])=>{if(e.isIntersecting){setVisible(true);obs.disconnect();}},{threshold:0.15}); obs.observe(el); return ()=>obs.disconnect(); },[]); return
{children}
; } function VideoSlot({label,posterIdx,height=460}){ const [playing,setPlaying]=React.useState(false); return (
{posterIdx!=null&&} {!playing?( ):(
Footage to be added — {label}
)} {label}
); } function ChapterHero(){ return (
The House of Bold Bee

Brand Story

Seven chapters. One continuing story.

); } function ChapterNav({sections}){ return ( ); } function ChapterHeading({label,subtitle,eyebrow}){ return (
{subtitle&&
{subtitle}
}

{label}

{eyebrow&&

{eyebrow}

}
); } function ChapterOneBeginning({section}){ return (
{section.showHero!==false&&
{section.heroAlt||''}
} {section.showVideo!==false&&}
); } function ChapterTwoPhilosophy({section}){ const values=section.values||[]; return (
{values.map(v=>({v}))}
); } function ChapterThreeHouse({section}){ const rooms=section.rooms||[]; return (
{rooms.map(r=>(
{r.label}
))}
); } function PeopleCard({a}){ const src=a.photo||(a.photoIdx!=null?photo(a.photoIdx,1200):photo(0,1200)); return (
{a.designation||a.name}

{a.bio}

); } function ChapterFourPeople({section,artisans}){ return (
{artisans.map(a=>())}
); } function ChapterFiveJourney({section,timelineByYear}){ return (
{section.heading&&
{section.heading}
}

{section.subtitle}

{section.body}

{timelineByYear.length===0&&

The living timeline of Bold Bee begins here — milestones will appear as they are published.

} {timelineByYear.map(group=>(
{group.year}
{group.events.map((e,i)=>(
{e.featured&&
Featured
}
{e.title}
{e.subtitle&&
{e.subtitle}
}

{e.description}

{e.featured&&e.quote&&

“{e.quote}”

} {e.location&&
{e.location}
}
))}
))} {section.closingTitle&&(
{section.closingTitle}

{section.closingBody}

)}
); } function ChapterSixLetter({section,founder}){ return (
{founder.signature||'Bold Bee'}
{founder.pubDate?new Date(founder.pubDate).toLocaleDateString('en-IN',{year:'numeric',month:'long',day:'numeric'}):'Publication date to be added'}
); } function ChapterSevenFuture({section,future}){ return (
{section.subtitle&&
{section.subtitle}
}

{section.heading}

“{future.quote}”

); } const CHAPTER_COMPONENTS={ ch1:ChapterOneBeginning,ch2:ChapterTwoPhilosophy,ch3:ChapterThreeHouse, ch4:ChapterFourPeople,ch5:ChapterFiveJourney,ch6:ChapterSixLetter,ch7:ChapterSevenFuture }; function About(){ React.useEffect(()=>{document.title='Brand Story — Bold Bee';},[]); const data=typeof BrandStoryStore!=='undefined'?BrandStoryStore.getPublicData():{sections:[],artisans:[],milestones:[],founder:{},future:{}}; const sections=data.sections; return (
{sections.map(s=>{ const Cmp=CHAPTER_COMPONENTS[s.key]; if(!Cmp)return null; if(s.key==='ch4')return ; if(s.key==='ch5')return ; if(s.key==='ch6')return ; if(s.key==='ch7')return ; return ; })} {typeof PublicationBanner!=='undefined'&&
}
); } window.About=About;