// J Renee Studios — Boise Modern Headshots & Branding service page chrome // Includes a dismissible announcement bar (Modern Headshot Day Boise). const { useState: bhUseState, useEffect: bhUseEffect } = React; const BH_INK = "#1A1A1A"; const BH_WHITE = "#FFFFFF"; const BH_GOLD = "#C9A84C"; const BH_BEIGE = "#F6F2EE"; const BH_GREY = "#8A8580"; // ---------- Primitives ---------- function BhEyebrow({ children, color = BH_GOLD, style }) { return (
{children}
); } function BhGoldRule({ width = 56, color = BH_GOLD, style }) { return ; } function BhBtn({ children, variant = "gold", onClick, href, style }) { const base = { padding: "20px 38px", fontFamily: "Poppins, sans-serif", fontWeight: 300, fontSize: 11, letterSpacing: "0.36em", textTransform: "uppercase", cursor: "pointer", border: "1px solid", borderRadius: 0, transition: "background-color 220ms ease, color 220ms ease, border-color 220ms ease", display: "inline-flex", alignItems: "center", gap: 14, textDecoration: "none", }; const variants = { "gold": { background: BH_GOLD, color: BH_WHITE, borderColor: BH_GOLD }, "outline-ink": { background: "transparent", color: BH_INK, borderColor: BH_INK }, "outline-light": { background: "transparent", color: BH_WHITE, borderColor: "rgba(255,255,255,0.85)" }, }; const [hover, setHover] = bhUseState(false); const hoverStyle = hover ? ( variant === "gold" ? { background: "#b59340", borderColor: "#b59340" } : variant === "outline-ink" ? { background: BH_INK, color: BH_WHITE } : { background: BH_WHITE, color: BH_INK, borderColor: BH_WHITE } ) : {}; const Tag = href ? "a" : "button"; return ( setHover(true)} onMouseLeave={()=>setHover(false)} style={{ ...base, ...variants[variant], ...hoverStyle, ...style }}>{children} ); } // ---------- Announcement Bar (Modern Headshot Day Boise) ---------- function BhAnnouncementBar({ visible, onDismiss }) { if (!visible) return null; return (
This Month's Special Modern Headshot Day · Once a month in Boise Reserve your spot →
); } // ---------- Header ---------- function BhHeader({ scrolled, barVisible }) { return (
Home Boise
J Renee
Studios
Modern Headshots & Branding { e.currentTarget.style.background = "#b59340"; e.currentTarget.style.borderColor = "#b59340"; }} onMouseLeave={(e) => { e.currentTarget.style.background = BH_GOLD; e.currentTarget.style.borderColor = BH_GOLD; }} >Specials
); } // ---------- Footer ---------- function BhFooter() { return ( ); } // ---------- Placeholder cell ---------- function BhPlaceholder({ label, sublabel, aspect = "2/3", style }) { return (
Image {label} {sublabel && ( {sublabel} )}
); } Object.assign(window, { BhEyebrow, BhGoldRule, BhBtn, BhAnnouncementBar, BhHeader, BhFooter, BhPlaceholder, BH_INK, BH_WHITE, BH_GOLD, BH_BEIGE, BH_GREY, bhUseState, bhUseEffect, });