This commit is contained in:
Игорь Брылёв 2025-01-23 10:09:40 +03:00
parent 88cec7b7b6
commit 1b62cb85ce
2 changed files with 7 additions and 7 deletions

View file

@ -9,17 +9,17 @@ import styles from './styles.module.css';
const features = [
{
title: 'Робот-манипулятор',
imageUrl: 'img/robossembler-arm.png',
imageUrl: 'img/rbs-framework-simulation.jpg',
description: (
<>
Шестиосевой робот-манипулятор без единого металлического крепежа, адаптированный для автоматической сборки
Шестиосевой робот-манипулятор без единого металлического крепежа
</>
),
repourl: 'https://gitlab.com/robossembler/roboarm-diy-version',
},
{
title: 'Сервопривод',
imageUrl: 'img/servo-reducer-assembled.jpg',
imageUrl: 'img/rbs-framework-simulation.jpg',
description: (
<>
Приспособление для захвата с симметричным стыковочным интерфейсом
@ -29,7 +29,7 @@ const features = [
},
{
title: 'Станок намотки',
imageUrl: 'img/winder1.webp',
imageUrl: 'img/rbs-framework-simulation.jpg',
description: (
<>
Сервопривод на базе контроллера собственной разработки
@ -38,7 +38,7 @@ const features = [
repourl: 'https://gitlab.com/robossembler/cnc/motor-wire-winder',
},
{
title: 'Robossembler Framework',
title: 'Фреймворк Робосборщик',
imageUrl: 'img/rbs-framework-simulation.jpg',
description: (
<>
@ -85,7 +85,7 @@ function FeatureCard({ imageUrl, title, description, repourl }) {
</div>
<div className="card__footer">
<div>
<a class="button button--block button--primary" href={repourl}>Подробнее</a>
<a class="button button--block button--primary" href={repourl}>Исходные коды и документация</a>
</div>
</div>
</div>

View file

@ -27,7 +27,7 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
padding: 2rem 2rem;
width: 100%;
}