// Shared primitives for the Protect-Me website UI kit. const { useState } = React; function Button({ variant = 'primary', arrow, children, onClick, href }) { const cls = `btn btn-${variant}${arrow ? ' btn-arrow' : ''}`; if (href) return {children}; return ; } function StoreButton({ label = 'App Store', kind = 'apple' }) { const apple = ( ); const google = ( ); return ( {kind === 'apple' ? apple : google} {label} ); } function Eyebrow({ children }) { return