From 170a23b1b08d1fd1f91d2e86f11cbcac09a065e2 Mon Sep 17 00:00:00 2001 From: veikko Date: Tue, 7 Jun 2022 02:07:04 +0300 Subject: [PATCH] Rest of the pages --- pages/archive.tsx | 13 +++++++++++++ pages/info.tsx | 13 +++++++++++++ pages/performers.tsx | 13 +++++++++++++ pages/safety.tsx | 13 +++++++++++++ 4 files changed, 52 insertions(+) create mode 100644 pages/archive.tsx create mode 100644 pages/info.tsx create mode 100644 pages/performers.tsx create mode 100644 pages/safety.tsx diff --git a/pages/archive.tsx b/pages/archive.tsx new file mode 100644 index 0000000..7780140 --- /dev/null +++ b/pages/archive.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +const Archive = () => { + return ( +
+

Arkisto

+ + Lisätietoja tulossa myöhemmin! +
+ ); +}; + +export default Archive; diff --git a/pages/info.tsx b/pages/info.tsx new file mode 100644 index 0000000..0e21e62 --- /dev/null +++ b/pages/info.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +const Info = () => { + return ( +
+

Info

+ + Lisätietoja tulossa myöhemmin! +
+ ); +}; + +export default Info; diff --git a/pages/performers.tsx b/pages/performers.tsx new file mode 100644 index 0000000..0c0e29a --- /dev/null +++ b/pages/performers.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +const Performers = () => { + return ( +
+

Esiintyjät

+ + Lisätietoja tulossa myöhemmin! +
+ ); +}; + +export default Performers; diff --git a/pages/safety.tsx b/pages/safety.tsx new file mode 100644 index 0000000..a58cca5 --- /dev/null +++ b/pages/safety.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +const Safety = () => { + return ( +
+

Turvallisuus

+ + Lisätietoja tulossa myöhemmin! +
+ ); +}; + +export default Safety;