Реализованы задачи бэклога 1-5 (1я не до конца)

This commit is contained in:
mi
2026-07-21 12:50:46 +03:00
parent 3b71caf7b3
commit 0d7f7a819f
105 changed files with 7185 additions and 38 deletions
+27
View File
@@ -0,0 +1,27 @@
export function HanLogo() {
return (
<div className="flex items-center gap-3 px-4 py-3">
<div className="flex items-center justify-center w-12 h-12 rounded-2xl bg-primary text-primary-foreground flex-shrink-0">
<svg
viewBox="0 0 100 100"
className="w-7 h-7"
fill="currentColor"
>
<path d="M20 25 L20 75 M20 50 L50 50 M50 25 L50 75 M70 25 L90 25 L90 50 L70 50 L70 75 L90 75"
stroke="currentColor"
strokeWidth="6"
fill="none"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
</div>
<div className="flex-1">
<h1 className="text-base font-medium mb-0.5">Привет! Я HAN</h1>
<p className="text-xs text-muted-foreground">
Помощник по документам и жизни в России
</p>
</div>
</div>
);
}