Added SKR collab

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-29 22:44:11 +03:00
parent 61f478cd51
commit 5a1773428b
4 changed files with 6 additions and 12 deletions

View File

@@ -2,17 +2,18 @@ import Performers from './Performers';
import Program from './Program';
import styles from '../../styles/Index.module.scss';
import Lead from '../components/Lead';
import Collaboration from '../components/Collaboration';
const Index = () => {
return (
<div className={styles.indexContainer}>
<h1>Runosaari</h1>
<Lead />
<Program />
<Performers />
<Collaboration />
<Program />
{/* <Workshops /> */}
{/* <Info /> */}
{/* <Collaboration /> */}
{/* <Archive /> */}
</div>
);