// repurposed as Benefits function Features() { const { t } = useI18n(); return (
} label={t('features.preventMyopia')} /> } label={t('features.comfortableEnvironment')} /> } label={t('features.accurateColor')} /> } label={t('features.certifiedSafe')} />
); } window.Features = Features; function BenefitCard({ icon, label }) { return (
{icon}
{label}
); } function EyeIcon() { return ( ); } function DeskIcon() { return ( ); } function SwatchIcon() { return ( ); } function BadgeIcon() { return ( ); } window.Features = Features;