docuservix/pages: добавление пустой страницы чата

This commit is contained in:
2026-06-17 18:23:19 +03:00
parent 987415eafd
commit 08642e46d4
5 changed files with 52 additions and 0 deletions
@@ -0,0 +1,10 @@
import Layout from '@theme/Layout';
import { ReactNode } from 'react';
export function ChatPage(): ReactNode {
return (
<Layout title="Чат">
<main className="container margin-vert--lg">Hello world!</main>
</Layout>
);
}