Rewrite in bun and vite away from NextJs

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-29 22:07:58 +03:00
parent af7f23b9b5
commit 0d60dbbb5f
119 changed files with 714 additions and 302 deletions

21
src/pages/Index.tsx Normal file
View File

@@ -0,0 +1,21 @@
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;