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

View file

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