Update for the year 2024

This commit is contained in:
2024-05-16 19:06:58 +03:00
parent f22db43343
commit 318f77a886
7 changed files with 115 additions and 207 deletions

View File

@@ -6,23 +6,20 @@ import styles from '../styles/Index.module.scss';
import Lead from './components/Lead';
import Collaboration from './components/Collaboration';
import Workshops from './workshops';
import Archive from './archive';
// import Workshops from './workshops';
const Home: NextPage = () => {
return (
<div className={styles.indexContainer}>
<h1>Runosaari kiittää!</h1>
<h2>
Tervetuloa seuraavaan Runosaareen <span>13.15.6.2024</span>
</h2>
{/* Pages hidden until next year
<Lead />
<Performers />
<Program />
<Workshops />
<Info />
<Collaboration />
*/}
<h1>Runosaari</h1>
<Lead />
<Program />
{/* <Performers />
<Workshops /> */}
<Info />
<Collaboration />
{/* <Archive /> */}
</div>
);
};