feat: init

This commit is contained in:
2026-05-08 22:40:44 +03:00
commit d8786937af
84 changed files with 13927 additions and 0 deletions

19
src/app/contacts/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
"use client";
import { ContactForm, FacilityBoard, IconCards, InnerHero } from "@/widgets/template-ui";
import { contactCards } from "@/entities/site-content";
export default function Page() {
return (
<>
<InnerHero
eyebrow="Contacts"
title="Адрес, часы, лабораторное окно и связь с координатором"
text="Контактная страница клиники должна помогать пациенту приехать подготовленным: адрес, время, документы, способ связи и понятное ожидание ответа."
/>
<IconCards items={contactCards} />
<FacilityBoard />
<ContactForm />
</>
);
}