Actual basic footer. Need to add everything tina related.

This commit was merged in pull request #11.
This commit is contained in:
2023-09-10 22:56:29 +02:00
parent ea192edf8f
commit a262dc6328
7 changed files with 51 additions and 19 deletions

View File

@@ -29,7 +29,7 @@ export const Carousel: PageBlockFunction<PageBlocksCarousel> = ({ data }) => {
dynamicHeight={ false }
interval={ data.speed || 3000 }>
{ data?.images?.map(imageUrl => (
<div className="carousel-image" style={ { backgroundImage: `url(${ imageUrl })` } }/>
<div key={ imageUrl } className="carousel-image" style={ { backgroundImage: `url(${ imageUrl })` } }/>
)) }
</ReactCarousel>