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(){ React.useEffect(()=>{ const cfg=typeof SEOStore!=='undefined'?SEOStore.config():{defaultMetaTitle:'Bold Bee — Handcrafted Silk Sarees',defaultMetaDescription:'Handwoven silk sarees and signature essentials, made slowly by named artisan families.',ogImage:'icons/og-image.png'}; document.title=cfg.defaultMetaTitle; function setMeta(name,content,attr){ let m=document.querySelector(`meta[${attr}="${name}"]`); if(!m){m=document.createElement('meta');m.setAttribute(attr,name);document.head.appendChild(m);} m.setAttribute('content',content); } function setCanonical(href){ let l=document.querySelector('link[rel="canonical"]'); if(!l){l=document.createElement('link');l.rel='canonical';document.head.appendChild(l);} l.href=href; } document.querySelector('meta[name="description"]')&&document.querySelector('meta[name="description"]').setAttribute('content',cfg.defaultMetaDescription); setMeta('og:title',cfg.defaultMetaTitle,'property'); setMeta('og:description',cfg.defaultMetaDescription,'property'); setMeta('og:url',location.origin+'/index.html','property'); setMeta('twitter:title',cfg.defaultMetaTitle,'name'); setMeta('twitter:description',cfg.defaultMetaDescription,'name'); setCanonical(location.origin+'/index.html'); },[]); 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;