Instagram images

This commit is contained in:
2022-11-12 17:52:07 +02:00
parent 3a9d767f14
commit dea804e6ef
5 changed files with 42 additions and 1 deletions

View File

@@ -115,6 +115,32 @@ export default function Index() {
@Instagramissa @Instagramissa
</a> </a>
</h1> </h1>
<div className={styles.instagramImagesContainer}>
<Image
className={styles.instagramImage}
src='/kauppa.png'
alt='kauppa ulkoa'
width={650}
height={650}
loading='lazy'
/>
<Image
className={styles.instagramImage}
src='/cafe.png'
alt='kahvi ja leivos'
width={650}
height={650}
loading='lazy'
/>
<Image
className={styles.instagramImage}
src='/bar.png'
alt='kaupan baari'
width={650}
height={650}
loading='lazy'
/>
</div>
</section> </section>
<span className={styles.separator} /> <span className={styles.separator} />

BIN
public/bar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 KiB

BIN
public/cafe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 747 KiB

BIN
public/kauppa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 KiB

View File

@@ -16,7 +16,8 @@
display: flex; display: flex;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
max-width: 80%; max-width: 675px;
width: 80%;
} }
.sectionContainer { .sectionContainer {
@@ -140,6 +141,20 @@
margin-bottom: 0; margin-bottom: 0;
} }
.instagramImagesContainer {
display: flex;
justify-content: space-around;
max-width: 100%;
margin-top: 2rem;
margin-bottom: 1rem;
}
.instagramImage {
max-width: 30%;
height: 100%;
border-radius: 10%;
}
.collaborationImage { .collaborationImage {
max-width: 100%; max-width: 100%;
height: 100%; height: 100%;