Performers component v1

This commit is contained in:
2022-06-14 19:48:15 +03:00
parent a4e224117c
commit 31553c0ed8
12 changed files with 317 additions and 50 deletions

View File

@@ -1,7 +1,21 @@
import type { NextPage } from 'next';
import Performers from './performers';
import Program from './program';
import Info from './info';
import Archive from './archive';
import Safety from './safety';
import styles from '../styles/Index.module.scss';
const Home: NextPage = () => {
return <div>asdsd</div>;
return (
<div className={styles.indexContainer}>
<Performers />
<Program />
<Info />
<Archive />
<Safety />
</div>
);
};
export default Home;