Collaboration section

This commit is contained in:
2022-07-07 22:49:07 +03:00
parent a9db8fb236
commit ea23ee1f0d
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import React from 'react';
import styles from '../../styles/Collaboration.module.scss';
const Collaboration = () => {
return (
<>
<h1>Yhteistyössä</h1>
<div className={styles.collabContainer}>
<span>Kulttuurirahaston Varsinais-Suomen rahasto</span>
<span>Runoviikko ry, Kirjan talo Bokens hus ry</span>
<span>Pro Sinervo ry</span>
<span>Velkuan saaristolaisyhdistys ry</span>
<span>Aviador Kustannus</span>
<span>Enostone Kustannus</span>
<span>Cafe Laituri</span>
<span>Saaristohotelspan Vaihela</span>
<span>Artbox Irja</span>
</div>
</>
);
};
export default Collaboration;

View File

@@ -4,6 +4,7 @@ import Program from './program';
import Info from './info';
import styles from '../styles/Index.module.scss';
import Lead from './components/Lead';
import Collaboration from './components/Collaboration';
const Home: NextPage = () => {
return (
@@ -13,6 +14,7 @@ const Home: NextPage = () => {
<Performers />
<Program />
<Info />
<Collaboration />
</div>
);
};