Changes on sidebar styles, and content of pages

This commit is contained in:
cagsun 2025-06-26 15:16:44 +02:00
parent 7ae4644893
commit e3cd2c7f00
22 changed files with 1014 additions and 49 deletions

View file

@ -0,0 +1,17 @@
import React from 'react';
import ImageCarousel from './ImageCarousel';
import styles from './StepWithCarousel.module.css';
export default function StepWithCarousel({ title, children, images }) {
return (
<div className={styles.step}>
<div className={styles.text}>
<h2>{title}</h2>
{children}
</div>
<div className={styles.carousel}>
<ImageCarousel images={images} />
</div>
</div>
);
}