/* ───────────────────────────────────────────────── Home variants — V02..V08 (7 alternative Home screens) All Rose-DNA, hot pink + pastels. Vary structure, type, icons, layout, "acidness". Each variant renders its own tab bar so we can show DNA-shifts there too. ───────────────────────────────────────────────── */ /* tiny helper: simple working tab bar with custom skin per variant */ function VariantTabBar({ active, onChange, skin = {} }) { const tabs = [ { id:"home", label:"йога" }, { id:"classes", label:"занятия" }, { id:"online", label:"онлайн" }, { id:"profile", label:"профиль" }, ]; const { bg = "#fff", border = "2.5px solid #e91e8c", activeBg = "#e91e8c", activeFg = "#fff", inactiveFg = "#e91e8c", rounded = 0, fontSize = 12, fontFamily = "'Nunito',sans-serif", fontWeight = 900, iconKind = "lotus", // controls home icon } = skin; return (