Rest of the pages

This commit is contained in:
2022-06-07 02:07:04 +03:00
parent da6100a052
commit 170a23b1b0
4 changed files with 52 additions and 0 deletions

13
pages/archive.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
const Archive = () => {
return (
<section className='page'>
<h1>Arkisto</h1>
<i>Lisätietoja tulossa myöhemmin!</i>
</section>
);
};
export default Archive;

13
pages/info.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
const Info = () => {
return (
<section className='page'>
<h1>Info</h1>
<i>Lisätietoja tulossa myöhemmin!</i>
</section>
);
};
export default Info;

13
pages/performers.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
const Performers = () => {
return (
<section className='page'>
<h1>Esiintyjät</h1>
<i>Lisätietoja tulossa myöhemmin!</i>
</section>
);
};
export default Performers;

13
pages/safety.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
const Safety = () => {
return (
<section className='page'>
<h1>Turvallisuus</h1>
<i>Lisätietoja tulossa myöhemmin!</i>
</section>
);
};
export default Safety;