refactor: create article model
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import s from './styles.module.scss';
|
||||
import { CallbackForm, Connect, OrderSchema } from '@/entities';
|
||||
import { Consultation, RelatedArticles, Sidebar } from '@/feature/article';
|
||||
import { Button } from '@shared/ui';
|
||||
import { sidebarData } from './model/sidebar';
|
||||
import { relatedArticlesData } from './model/relatedArticles';
|
||||
import { expertData } from './model/expert';
|
||||
|
||||
function AutoTech() {
|
||||
return (
|
||||
@@ -52,7 +54,9 @@ function AutoTech() {
|
||||
изменен.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<CallbackForm pageName='Автотехническая экспертиза' />
|
||||
|
||||
<h3 className={s.Header}>Документы, необходимые для экспертизы:</h3>
|
||||
<p className={s.Text}>
|
||||
Для начала работ по автомобильной экспертизе эксперту понадобятся
|
||||
@@ -85,15 +89,22 @@ function AutoTech() {
|
||||
<Connect />
|
||||
</div>
|
||||
<aside>
|
||||
<Sidebar />
|
||||
<Sidebar {...sidebarData} />
|
||||
</aside>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<Consultation />
|
||||
<RelatedArticles />
|
||||
|
||||
<section className={s.Partners}></section>
|
||||
<Consultation {...expertData} />
|
||||
<RelatedArticles related={relatedArticlesData} />
|
||||
<section className={s.Partners}>
|
||||
<div className={s.Divider}>
|
||||
<span className={s.Separator} />
|
||||
</div>
|
||||
Slider
|
||||
<div className={s.Divider}>
|
||||
<span className={s.Separator} />
|
||||
</div>
|
||||
</section>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user