Hibernate page until the next year

This commit is contained in:
2023-07-25 16:37:31 +03:00
parent f474b8f39b
commit f22db43343
6 changed files with 30 additions and 12 deletions

View File

@@ -12,12 +12,12 @@ function Runosaari({ Component, pageProps }: AppProps) {
<Head>
<title>Runosaari</title>
</Head>
<NavBar />
{/* <NavBar /> */}
<Logo />
<main>
<Component {...pageProps} />
</main>
<NavBar />
{/* <NavBar /> */}
<Footer />
</>
);

View File

@@ -5,18 +5,24 @@ import Info from './info';
import styles from '../styles/Index.module.scss';
import Lead from './components/Lead';
import Collaboration from './components/Collaboration';
import Workshops from './workshops';
// import Workshops from './workshops';
const Home: NextPage = () => {
return (
<div className={styles.indexContainer}>
<h1>Runosaari 2023</h1>
<Lead />
<Performers />
<Program />
{/* <Workshops /> // No workshops on 2023 */}
<Info />
<Collaboration />
<h1>Runosaari kiittää!</h1>
<h2>
Tervetuloa seuraavaan Runosaareen <span>13.15.6.2024</span>
</h2>
{/* Pages hidden until next year
<Lead />
<Performers />
<Program />
<Workshops />
<Info />
<Collaboration />
*/}
</div>
);
};

View File

@@ -4,7 +4,7 @@ import styles from '../styles/Performers.module.scss';
import shared from '../styles/Shared.module.scss';
import Performer from '../types/Performer';
import { BiChevronDown, BiChevronLeft } from 'react-icons/bi';
import PerformersData from '../data/performers/2023';
import PerformersData from '../data/performers/2024';
import { CSSTransition } from 'react-transition-group';
interface PerformerCard extends Performer {
@@ -88,8 +88,6 @@ const Performers = () => {
) : (
<i>Lisätietoja tulossa myöhemmin...</i>
)}
<i style={{ marginTop: '3rem' }}>Esiintyjälistaa päivitetään...</i>
</section>
);
};