diff --git a/pages/components/Collaboration.tsx b/pages/components/Collaboration.tsx new file mode 100644 index 0000000..5645cbc --- /dev/null +++ b/pages/components/Collaboration.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import styles from '../../styles/Collaboration.module.scss'; + +const Collaboration = () => { + return ( + <> +

Yhteistyössä

+
+ Kulttuurirahaston Varsinais-Suomen rahasto + Runoviikko ry, Kirjan talo – Bokens hus ry + Pro Sinervo ry + Velkuan saaristolaisyhdistys ry + Aviador Kustannus + Enostone Kustannus + Cafe Laituri + Saaristohotelspan Vaihela + Artbox Irja +
+ + ); +}; + +export default Collaboration; diff --git a/pages/index.tsx b/pages/index.tsx index b53c8e4..7c60f11 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -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 = () => { + ); }; diff --git a/styles/Collaboration.module.scss b/styles/Collaboration.module.scss new file mode 100644 index 0000000..78eb612 --- /dev/null +++ b/styles/Collaboration.module.scss @@ -0,0 +1,12 @@ +.collabContainer { + display: flex; + flex-wrap: wrap; + justify-content: center; + + span { + margin-right: 2em; + font-size: 1.6rem; + font-weight: bolder; + line-height: 2em; + } +}