Updated program

This commit is contained in:
2023-05-25 22:21:08 +03:00
parent df9b60a368
commit 71cb4619dd
2 changed files with 26 additions and 7 deletions

View File

@@ -1,9 +1,6 @@
import React, { useState } from 'react';
import { BiChevronDown, BiChevronLeft } from 'react-icons/bi';
import styles from '../styles/Program.module.scss';
import { FiExternalLink } from 'react-icons/fi';
import shared from '../styles/Shared.module.scss';
import { CSSTransition } from 'react-transition-group';
import Link from 'next/link';
interface DayToggles {
wed: boolean;
@@ -31,7 +28,29 @@ const Program = () => {
return (
<section className={shared.page}>
<h1 id='program-start'>Ohjelma</h1>
<i className={shared.followNote}>Lisätietoja tulossa myöhemmin...</i>
<h2>
20.7. Cafe Laituri{' '}
<a href='https://www.cafelaituri.fi'>
<FiExternalLink fontSize={20} />
</a>
</h2>
<p>Voiponlahdentie 37, Palva</p>
<h2>
21.7. Vaihela{' '}
<a href='https://vaihela.fi/'>
<FiExternalLink fontSize={20} />
</a>
</h2>
<p> Velkuanmaantie 168, Palva</p>
<h2>
22.7. Sinervon talo{' '}
<a href='https://www.prosinervo.com/'>
<FiExternalLink fontSize={20} />
</a>
</h2>
<p style={{ marginBottom: 50 }}>Sauniementie 5, Teersalo</p>
<i className={shared.followNote}>Ohjelmaa päivitetään...</i>
</section>
);
};