feat: init
This commit is contained in:
19
src/app/contacts/page.tsx
Normal file
19
src/app/contacts/page.tsx
Normal 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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user