Changes on sidebar styles, and content of pages
This commit is contained in:
parent
7ae4644893
commit
e3cd2c7f00
22 changed files with 1014 additions and 49 deletions
17
src/components/StepWithCarousel.js
Normal file
17
src/components/StepWithCarousel.js
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue