This commit is contained in:
deonisii
2026-04-17 03:15:47 +03:00
commit d769ac602b
29 changed files with 8242 additions and 0 deletions

61
app/for-uk/page.tsx Normal file
View File

@@ -0,0 +1,61 @@
import { Building2, CheckCircle2, ShieldCheck, BarChart3 } from "lucide-react";
export default function ForUkPage() {
return (
<main className="bg-neutral-950">
<section className="hero-bg">
<div className="max-w-7xl mx-auto px-4 sm:px-6 py-16 sm:py-20">
<div className="max-w-3xl">
<p className="text-emerald-300 text-sm mb-4">Для управляющих компаний</p>
<h1 className="text-4xl sm:text-5xl font-bold leading-tight">
Решение для УК, ТСЖ и ТСН
</h1>
<p className="mt-5 text-neutral-300 text-lg leading-relaxed">
Помогаем перевести дворовой шлагбаум из ручного режима в систему с
прозрачной логикой доступа, историей событий и понятной подпиской.
</p>
</div>
</div>
</section>
<section className="py-16 sm:py-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 grid md:grid-cols-2 gap-6">
<div className="rounded-3xl border border-white/10 bg-neutral-900 p-6 sm:p-8">
<Building2 className="w-10 h-10 text-emerald-500 mb-5" />
<h2 className="text-2xl font-semibold mb-3">Единый инструмент</h2>
<p className="text-neutral-400">
Управление въездом, списками доступа и событиями проезда в одной
системе.
</p>
</div>
<div className="rounded-3xl border border-white/10 bg-neutral-900 p-6 sm:p-8">
<ShieldCheck className="w-10 h-10 text-emerald-500 mb-5" />
<h2 className="text-2xl font-semibold mb-3">Контроль территории</h2>
<p className="text-neutral-400">
Меньше посторонних автомобилей и меньше ручных операций по въезду.
</p>
</div>
<div className="rounded-3xl border border-white/10 bg-neutral-900 p-6 sm:p-8">
<BarChart3 className="w-10 h-10 text-emerald-500 mb-5" />
<h2 className="text-2xl font-semibold mb-3">Аналитика для УК</h2>
<p className="text-neutral-400">
В расширенном тарифе доступны фильтры, фото в истории и более
детальная аналитика проездов.
</p>
</div>
<div className="rounded-3xl border border-white/10 bg-neutral-900 p-6 sm:p-8">
<CheckCircle2 className="w-10 h-10 text-emerald-500 mb-5" />
<h2 className="text-2xl font-semibold mb-3">Поэтапное внедрение</h2>
<p className="text-neutral-400">
Можно начать с базового функционала и затем перейти на
расширенную подписку.
</p>
</div>
</div>
</section>
</main>
);
}