move all wizard specific stuff to components/wizard

This commit is contained in:
Thomas Ruoff
2020-08-22 00:25:14 +02:00
parent 1df26814ba
commit 1bf7c7b801
9 changed files with 23 additions and 16 deletions

13
components/header.js Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react'
export default function Header() {
return (
<>
<h1 className="text-3xl">Pfadi Bussle Buchen</h1>
<p className="mb-8">
Du willst das Pfadi Bussle buchen? Hier bist du richtig!
</p>
</>
)
}