Contacts section

This commit is contained in:
2022-11-02 17:31:41 +02:00
parent 50debea965
commit e265f25d2c
6 changed files with 80 additions and 0 deletions

45
components/Contact.tsx Normal file
View File

@@ -0,0 +1,45 @@
import React from 'react';
import Image from 'next/image';
import styles from '../styles/Contact.module.scss';
export const Contact = () => {
return (
<section className={styles.mainContainer}>
<Image
className={styles.keepersImage}
src='/elvira-iveta.png'
layout='responsive'
alt='shop keepers'
width={251}
height={251}
/>
<span className={styles.emailAddress}>
info@livonsaarenosuuskauppa.fi
</span>
<span className={styles.phone}>+358 40 0460600</span>
<div className={styles.someContainer}>
<a href='https://www.facebook.com/LivonsaarenOsuuskauppa/'>
<Image
className={styles.someIcon}
src='/fb-icon.png'
layout='responsive'
alt='facebook'
width={300}
height={300}
/>
</a>
<a href='https://www.instagram.com/livonsaaren_osuuskauppa/'>
<Image
className={styles.someIcon}
src='/insta-icon.png'
layout='responsive'
alt='facebook'
width={300}
height={300}
/>
</a>
</div>
<span className={styles.separator} />
</section>
);
};