Files
runosaari/pages/program.tsx
2025-06-05 19:26:54 +03:00

74 lines
2.3 KiB
TypeScript

import React, { useState } from 'react';
import { FiExternalLink } from 'react-icons/fi';
import shared from '../styles/Shared.module.scss';
import styles from '../styles/Program.module.scss';
import { CSSTransition } from 'react-transition-group';
import { BiChevronDown, BiChevronLeft } from 'react-icons/bi';
interface DayToggles {
wed: boolean;
thu: boolean;
fri: boolean;
sat: boolean;
}
const Program = () => {
return (
<section className={shared.page}>
{/* <h1 id='program-start'>Ohjelma</h1> */}
<p className={styles.programTimeAndPlace}>
Torstai 12.6. klo 18-21 <span className={styles.locationName}>Palva</span>
</p>
<h2 className={styles.placeTitle}>
<a href='https://www.cafelaituri.fi'>
Cafe Laituri
</a>
</h2>
<ul className={styles.performerList}>
<li>Pegasos</li>
<li>Jaakko Martikainen ja Henriikka Tavi</li>
<li>Peter Mickwitz</li>
</ul>
<hr className={styles.programHr} />
<p className={styles.programTimeAndPlace}>
Perjantai 13.6. klo 18-21 <span className={styles.locationName}>Velkuanmaa</span>
</p>
<h2 className={styles.placeTitle}>
<a href='https://www.vaihela.fi/'>
<span className={styles.placeName}>Saaristohotelli Vaihela</span>
</a>
</h2>
<ul className={styles.performerList}>
<li>Kauko Röyhkä & Severi Pyysalo</li>
<li>Juha Kulmala + Positroninen Runo-orkesteri!</li>
<li>Pekka Tolonen & Katariina Vuorinen</li>
</ul>
<hr className={styles.programHr} />
<p className={styles.programTimeAndPlace}>
Lauantai 14.6. klo 15-20 <span className={styles.locationName}>Teersalo</span>
</p>
<h2 className={styles.placeTitle}>
<a href='https://prosinervo.com/'>
<span className={styles.placeName}>Sinervon talo</span>
</a>
</h2>
<ul className={styles.performerList}>
<li>Panu Hämeenaho</li>
<li>Uhrijuhla</li>
<li>Santtu Puukka</li>
<li>Maaria Päivinen</li>
<li>Silja Järventausta</li>
<li>Tiina Lehikoinen</li>
<li>Djangomania</li>
</ul>
<hr className={styles.programHr} />
</section>
);
};
export default Program;