Добавлены изменения для PWA

This commit is contained in:
mi
2026-07-21 18:49:21 +03:00
parent 627371b221
commit cc0163eb94
22 changed files with 592 additions and 208 deletions
+6 -6
View File
@@ -1,13 +1,11 @@
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"
<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"
@@ -16,12 +14,14 @@ export function HanLogo() {
/>
</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>
);
}