feat: page template

This commit is contained in:
2025-07-01 13:29:38 +03:00
parent 359f3a32c4
commit 8bb29cc042
10 changed files with 286 additions and 10 deletions

View File

@@ -1,3 +1,25 @@
import { AutoTech } from '@/views';
import { ROUTES } from '@core/constants/route';
import Breadcrumbs from '@widgets/breadcrumbs/ui';
const breadcrumbData = [
{
name: 'Экспертиза',
path: ROUTES.EXPERTIZA,
},
{
name: 'Автотехническая экспертиза',
path: '',
},
];
const PAGE_NAME = 'Автотехническая экспертиза';
export default function Page() {
return <div>Page</div>;
return (
<>
<Breadcrumbs breadcrumbs={breadcrumbData} />
<AutoTech />
</>
);
}