28 lines
905 B
TypeScript
28 lines
905 B
TypeScript
|
|
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>
|
|
);
|
|
}
|