Files
openhuman/src/components/PrivacyFeatureCard.tsx
T
Steven Enamakel 5350737b3d Refactor onboarding steps and update styles for improved user engagement
- Adjusted button styles and text in the FeaturesStep and PrivacyStep components to enhance clarity and user experience.
- Updated titles and descriptions across onboarding steps to better communicate the features and privacy measures of AlphaHuman.
- Modified button text to create a more engaging call-to-action for users.

These changes aim to streamline the onboarding process, making it more intuitive and appealing while emphasizing the application's key features and privacy commitments.
2026-01-28 01:20:36 +05:30

20 lines
565 B
TypeScript

interface PrivacyFeatureCardProps {
title: string;
description: string;
}
const PrivacyFeatureCard = ({ title, description }: PrivacyFeatureCardProps) => {
return (
<div className="bg-stone-800/50 rounded-xl p-3 border border-stone-700">
<div className="flex items-start space-x-4">
<div>
<h3 className="font-semibold text-sm mb-2 text-center">{title}</h3>
<p className="opacity-70 text-xs leading-relaxed text-center">{description}</p>
</div>
</div>
</div>
);
};
export default PrivacyFeatureCard;