mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 06:32:24 +00:00
- 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.
20 lines
565 B
TypeScript
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;
|