feat: split big file and update agents.md

This commit is contained in:
2026-06-18 23:16:20 +03:00
parent d8786937af
commit 7c2edbdb52
31 changed files with 1006 additions and 874 deletions

View File

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