function Reveal({children,style}){ const ref=React.useRef(null); const [shown,setShown]=React.useState(false); React.useEffect(()=>{ const el=ref.current; if(!el){setShown(true);return;} const rect=el.getBoundingClientRect(); if(rect.top{if(e.isIntersecting){setShown(true);obs.disconnect();}},{threshold:0,rootMargin:'200px'}); obs.observe(el); const fallback=setTimeout(()=>setShown(true),1200); return ()=>{obs.disconnect();clearTimeout(fallback);}; },[]); return
{children}
; } const CATEGORIES=[['Sarees','For every occasion'],['Blouses','Tailored to pair'],['Dupattas','Sheer finishing pieces']]; const LOOKS=[['Look 01','Morning drape, natural light'],['Look 02','Evening zari, low light'],['Look 03','Studio portrait, temple border']]; function Homepage(){ const hero=window.BBExperience?window.BBExperience.publishedHero({headline:'Woven in Silence',button1:'Explore the Collection',button1Link:'Collections.html'}):{headline:'Woven in Silence',button1:'Explore the Collection',button1Link:'Collections.html'}; const isOn=name=>window.BBExperience?window.BBExperience.isEnabled(name):true; const campaign=window.BBExperience?(window.BBExperience.publishedPublications('Homepage')[0]||null):null; return (
{isOn('Hero Banner')&&
hero
New Collection

{hero.headline}

{hero.button1}
} {campaign&&
{campaign.contentType||'Featured'}

{campaign.title}

{campaign.shortDescription&&

{campaign.shortDescription}

} Read More
{campaign.title}/
} {isOn('Featured Collections')&&
Featured Collections

{window.BBExperience?window.BBExperience.override('Featured Collections','headline','Three Editions, One Season'):'Three Editions, One Season'}

{COLLECTIONS.map((c,i)=>( {c.name}/
{c.name}
{c.desc}
))}
} {isOn('New Arrivals')&&
New Arrivals

{window.BBExperience?window.BBExperience.override('New Arrivals','headline','Recently Woven'):'Recently Woven'}

{PRODUCTS.slice(0,4).map(p=>())}
} {isOn('Editorial')&&
editorial
Editorial ยท The Season

A Length of Silk, Worn as an Heirloom

Photographed in the same light the weavers work by โ€” this season's edit is built around three weaves passed through three generations of the same families.

Read the Story
} {isOn('Brand Story')&& Brand Story

We Measure Craft in Weeks, Not Units

Bold Bee works with a small number of weaving families across India, each holding a tradition specific to their region. We do not chase volume โ€” every saree is made to order, on a named loom, by a named weaver.

Our Story
} {isOn('Shop by Category')&&
{CATEGORIES.map(([name,desc],i)=>( {name}/
{name}
{desc}
))}
} {isOn('Lookbook')&&
Lookbook

Autumn, in Three Frames

{LOOKS.map(([name,cap],i)=>(
{name}/
{name}
{cap}
))}
} {isOn('Customer Notes')&& Customer Notes
{[['The drape is unlike anything from a boutique โ€” you can feel the years of skill.','Anjali R.'],['Arrived with a handwritten note from the weaving family. Extraordinary.','Priya M.'],['My mother wore Kanjivaram at her wedding; this saree carries the same weight and grace.','Deepa S.']].map(([q,n])=>(

“{q}”

{n}
))}
} {isOn('Newsletter Section')&&} {isOn('Instagram Gallery')&& @boldbee
{[0,1,2,3,4,5].map(i=>(
instagram
))}
}
); } window.Homepage=Homepage;