feat: add content to experts

This commit is contained in:
2025-07-11 11:19:36 +03:00
parent dd8cc24925
commit 8fe566e1c9
58 changed files with 1640 additions and 27 deletions

View File

@@ -0,0 +1 @@
export * from './ui';

View File

@@ -0,0 +1,14 @@
import { ROUTES } from '@shared/const/route';
export const PAGE_NAME = 'Бородин Виталий Петрович';
export const breadcrumbData = [
{
name: 'Эксперты',
path: ROUTES.EXPERTS,
},
{
name: PAGE_NAME,
path: '',
},
];

View File

@@ -0,0 +1,75 @@
.Container {
margin: 0 auto;
max-width: rem(1540px);
display: grid;
gap: 10px;
padding: 10px;
@include iftablet {
grid-template-columns: auto 400px;
justify-items: center;
gap: 20px;
padding: 20px;
}
@include iflaptop {
padding: 28px;
}
@include ifdesktop {
padding: 40px;
gap: 40px;
}
}
.Block {
display: flex;
flex-direction: column;
gap: 20px;
h3 {
font-family: $font-roboto;
font-weight: 500;
font-size: 32px;
line-height: 130%;
color: $color-text;
margin-bottom: 20px;
}
p {
font-family: $font-roboto;
font-weight: 400;
font-size: 18px;
line-height: 110%;
color: $color-text;
}
ul {
display: flex;
flex-direction: column;
list-style-type: disc;
margin-left: 16px;
margin-bottom: 16px;
}
li {
font-family: $font-roboto;
font-weight: 300;
font-size: 16px;
line-height: 130%;
color: $color-text;
list-style: unset;
}
.ListShift{
margin-left: 40px;
}
}
.Photo {
.Image {
width: 200px;
height: auto;
}
}

View File

@@ -0,0 +1,55 @@
import s from './styles.module.scss';
import Image from 'next/image';
import { breadcrumbData } from './model/breadcrums';
import { Breadcrumbs } from '@/widgets';
import { Partners } from '@/feature/article';
import photo from '@public/images/photo/borodin-vitaliy.jpg';
function ExpertBorodin() {
return (
<>
<Breadcrumbs breadcrumbs={breadcrumbData} />
<section className={s.Container}>
<div className={s.Block}>
<h3>Бородин Виталий Петрович, Эксперт</h3>
<p>
Имеет высшее образование, квалификация инженер, Ростовский
Государственный Университет Путей Сообщений.
</p>
<p>
Профессиональная переподготовка по специальности «Судебная
строительно-техническая и стоимостная экспертиза объектов
недвижимости». Диплом 642415068754 (регистрационный номер
2021/049-8579 от 30 сентября 2021 г. Сертификат соответствия
035031 от 30.09.2021г.
</p>
<p>
Сертифицирован в соответствии с правилами системы добровольной
сертификации деятельности экспертов в области судебной экспертизы,
зарегистрированный Федеральным агентством по техническому
регулированию и метрологии (регистрационный номер Pocc RU.31185.04
ЖНТО), сертификат соответствия судебного эксперта 12/09/24-16.1 по
специальности:
</p>
<ul>
<li className={s.ListShift}>
{' '}
16.1. «Исследование строительных объектов и территории
функционально связанной с ними с целью определения их стоимости».
</li>
</ul>
</div>
<div className={s.Photo}>
<Image
className={s.Image}
src={photo}
alt={'Бородин Виталий Петрович'}
/>
</div>
</section>
<Partners />
</>
);
}
export { ExpertBorodin };