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

17
src/components/Lead.tsx Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import styles from '../../styles/Lead.module.scss';
const Lead = () => {
return (
<div className={styles.leadContainer}>
<h2 className={styles.leadTitle}>
Runofestivaali saariston sylissä!
<span className={styles.dateAndPlace}>
11. - 13.6.2026
</span>
</h2>
</div>
);
};
export default Lead;