fix: add adaptive to header, footer

This commit is contained in:
2025-07-07 13:38:58 +03:00
parent 628bc94280
commit 40e010bafd
15 changed files with 239 additions and 64 deletions

View File

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