- Added a new layout component for the public offer document. - Created the public offer page in MDX format, detailing terms and conditions for service usage. - Removed the old offer page in TSX format. - Updated links for offer and support to a new shared component for better maintainability. - Integrated Tailwind CSS typography plugin for improved text styling.
7 lines
288 B
TypeScript
7 lines
288 B
TypeScript
import { DocumentsLayout } from '@/components/documents/layout';
|
|
import { type PropsWithChildren } from 'react';
|
|
|
|
export default function Layout({ children }: Readonly<PropsWithChildren>) {
|
|
return <DocumentsLayout title="Публичная оферта">{children}</DocumentsLayout>;
|
|
}
|