diff --git a/apps/web/app/(main)/contacts/page.tsx b/apps/web/app/(main)/contacts/page.tsx index ebfc7d7..34c2045 100644 --- a/apps/web/app/(main)/contacts/page.tsx +++ b/apps/web/app/(main)/contacts/page.tsx @@ -8,7 +8,7 @@ export default function ContactsPage() {
-

Контакты

+

Контакты

diff --git a/apps/web/components/navigation/header/index.tsx b/apps/web/components/navigation/header/index.tsx index c665195..21424e9 100644 --- a/apps/web/components/navigation/header/index.tsx +++ b/apps/web/components/navigation/header/index.tsx @@ -5,7 +5,7 @@ type Props = { title: string | undefined }; export function PageHeader(props: Readonly) { return ( -
+
{props.title}
diff --git a/apps/web/components/profile/components/card-header.tsx b/apps/web/components/profile/components/card-header.tsx index 8328b2d..f92d367 100644 --- a/apps/web/components/profile/components/card-header.tsx +++ b/apps/web/components/profile/components/card-header.tsx @@ -5,7 +5,7 @@ type Props = { export function ProfileCardHeader({ title }: Readonly) { return (
-

{title}

+

{title}

); diff --git a/apps/web/components/profile/components/link-button.tsx b/apps/web/components/profile/components/link-button.tsx index 489aa25..ca4f7f5 100644 --- a/apps/web/components/profile/components/link-button.tsx +++ b/apps/web/components/profile/components/link-button.tsx @@ -13,7 +13,7 @@ export function LinkButton({ description, href, text, visible }: Props) { return (
-

{text}

+

{text}

{description}
diff --git a/apps/web/components/schedule/slot-orders-list.tsx b/apps/web/components/schedule/slot-orders-list.tsx index dec4c31..2079a6e 100644 --- a/apps/web/components/schedule/slot-orders-list.tsx +++ b/apps/web/components/schedule/slot-orders-list.tsx @@ -15,7 +15,7 @@ export function SlotOrdersList({ return (
-

Записи

+

Записи

{slot?.orders.map((order) => { return order && ; })}