добавлена форма заявки тестовая, тестовая сттраница crm база данных
Some checks failed
Auto Deploy / deploy (push) Failing after 45s

This commit is contained in:
deonisii
2026-04-17 16:10:29 +03:00
parent b4325ec1fa
commit 64e8a4427d
15 changed files with 2051 additions and 45 deletions

89
components/lead-form.tsx Normal file
View File

@@ -0,0 +1,89 @@
"use client";
import { useState } from "react";
export default function LeadForm() {
const [company, setCompany] = useState("");
const [phone, setPhone] = useState("");
const [message, setMessage] = useState("");
const [isSubmitting, setIsSubmitting] = useState(false);
const [resultMessage, setResultMessage] = useState("");
async function handleSubmit(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
setIsSubmitting(true);
setResultMessage("");
try {
const response = await fetch("/api/leads", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
company,
phone,
message,
}),
});
const data = await response.json();
if (!response.ok) {
setResultMessage(data.error || "Ошибка отправки");
return;
}
setResultMessage("Заявка отправлена. Мы свяжемся с вами.");
setCompany("");
setPhone("");
setMessage("");
} catch (error) {
console.error(error);
setResultMessage("Ошибка сети. Попробуйте ещё раз.");
} finally {
setIsSubmitting(false);
}
}
return (
<form onSubmit={handleSubmit} className="mt-8 grid gap-4 sm:gap-5">
<input
type="text"
placeholder="Название ЖК, ТСЖ или УК"
value={company}
onChange={(e) => setCompany(e.target.value)}
className="w-full rounded-2xl border border-white/10 bg-black/30 px-5 py-4 outline-none placeholder:text-neutral-500 focus:border-emerald-500"
required
/>
<input
type="tel"
placeholder="+7 (___) ___-__-__"
value={phone}
onChange={(e) => setPhone(e.target.value)}
className="w-full rounded-2xl border border-white/10 bg-black/30 px-5 py-4 outline-none placeholder:text-neutral-500 focus:border-emerald-500"
required
/>
<textarea
placeholder="Опишите текущий шлагбаум и что хотите добавить: номерной доступ, приложение, история, аналитика"
value={message}
onChange={(e) => setMessage(e.target.value)}
className="min-h-32 w-full rounded-2xl border border-white/10 bg-black/30 px-5 py-4 outline-none placeholder:text-neutral-500 focus:border-emerald-500"
/>
<button
type="submit"
disabled={isSubmitting}
className="inline-flex items-center justify-center rounded-2xl bg-emerald-600 px-6 py-4 text-base font-semibold hover:bg-emerald-500 transition-colors disabled:opacity-60"
>
{isSubmitting ? "Отправка..." : "Отправить заявку"}
</button>
{resultMessage && (
<p className="text-sm text-neutral-300">{resultMessage}</p>
)}
</form>
);
}