landing page added

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-04-01 01:22:31 +05:00
parent 291375ce02
commit 80343c9ca8
34 changed files with 1262 additions and 49 deletions

View File

@@ -15,7 +15,7 @@ interface InfoRowProps {
export const InfoRow: React.FC<InfoRowProps> = ({ label, value, icon }) => (
<div className="flex items-start justify-between gap-4 py-3 border-b border-slate-100 last:border-0">
<span className="flex items-center gap-2 text-sm font-medium text-slate-500 min-w-[140px]">
<span className="flex items-center gap-2 text-sm font-medium text-slate-500 min-w-35">
{icon && <span className="text-slate-400">{icon}</span>}
{label}
</span>
@@ -150,7 +150,7 @@ export const SimilarityMeter: React.FC<SimilarityMeterProps> = ({
{/* Track */}
<div className="relative h-3 bg-slate-100 rounded-full overflow-hidden">
<div
className={`absolute inset-y-0 left-0 rounded-full bg-gradient-to-r ${levelColors[level]} transition-all duration-700`}
className={`absolute inset-y-0 left-0 rounded-full bg-linear-to-r ${levelColors[level]} transition-all duration-700`}
style={{ width: `${percentage}%` }}
/>
{/* Threshold markers */}
@@ -211,7 +211,7 @@ export const Avatar: React.FC<AvatarProps> = ({
return (
<div
className={`${sizeMap[size]} rounded-full bg-gradient-to-br from-violet-500 to-indigo-600 flex items-center justify-center text-white font-bold ring-2 ring-white`}
className={`${sizeMap[size]} rounded-full bg-linear-to-br from-violet-500 to-indigo-600 flex items-center justify-center text-white font-bold ring-2 ring-white`}
>
{initials}
</div>