Улучшить мобильное меню и форму заявки, добавить номер лида и заменить middleware на proxy
All checks were successful
Auto Deploy / deploy (push) Successful in 22s

This commit is contained in:
deonisii
2026-04-18 00:20:24 +03:00
parent 9b86175929
commit 45ae26e213
9 changed files with 571 additions and 322 deletions

View File

@@ -0,0 +1,25 @@
import type { SVGProps } from "react";
export default function BarrierIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
aria-hidden="true"
{...props}
>
<path d="M3 20h18" />
<path d="M6 20v-7a2 2 0 0 1 2-2h1" />
<path d="M9 11h10.5" />
<path d="M9 11 20 5" />
<path d="M11.3 9.75 13 10.7" />
<path d="M14.8 7.85 16.5 8.8" />
<path d="M18.3 5.95 20 6.9" />
<path d="M6 16h2" />
</svg>
);
}