22 lines
472 B
TypeScript
22 lines
472 B
TypeScript
import Performers from './Performers';
|
|
import Program from './Program';
|
|
import styles from '../../styles/Index.module.scss';
|
|
import Lead from '../components/Lead';
|
|
|
|
const Index = () => {
|
|
return (
|
|
<div className={styles.indexContainer}>
|
|
<h1>Runosaari</h1>
|
|
<Lead />
|
|
<Program />
|
|
<Performers />
|
|
{/* <Workshops /> */}
|
|
{/* <Info /> */}
|
|
{/* <Collaboration /> */}
|
|
{/* <Archive /> */}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Index;
|