// TweaksPanel — edit-mode UI
function TweaksPanel({ tweaks, update, onClose }) {
return (
Tweaks
Palette
{['sandstone', 'cool', 'darker'].map(p => (
))}
Density
{['compact', 'normal', 'airy'].map(d => (
))}
Brand "sending" animation
{[
['broadcast', 'Broadcast'],
['paperplane', 'Paperplane'],
['signal', 'Signal'],
].map(([k, label]) => (
))}
Hero background cycling
);
}
Object.assign(window, { TweaksPanel });