Files
runosaari/pages/components/Collaboration.tsx
2022-07-12 16:55:53 +03:00

25 lines
686 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
import styles from '../../styles/Collaboration.module.scss';
const Collaboration = () => {
return (
<>
<h1>Yhteistyössä</h1>
<div className={styles.collabContainer}>
<span>Varsinais-Suomen rahasto</span>
<span>Runoviikko ry</span>
<span>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>Saaristohotelli Vaihela</span>
<span>Artbox Irja</span>
</div>
</>
);
};
export default Collaboration;