mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
44 lines
914 B
JavaScript
44 lines
914 B
JavaScript
import Head from 'next/head'
|
|
|
|
import Wizard from '../components/wizard'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="container">
|
|
<Head>
|
|
<title>Pfadi Bussle Buchen</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main>
|
|
<h1>Pfadi Bussle Buchen</h1>
|
|
|
|
<p>Du willst das Pfadi Bussle buchen? Hier bist du richtig!</p>
|
|
|
|
<Wizard />
|
|
</main>
|
|
|
|
<footer>
|
|
<a>Freundeskreis des VCP Rosenfeld</a>
|
|
</footer>
|
|
|
|
<style jsx>{``}</style>
|
|
|
|
<style jsx global>{`
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
|
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
|
|
sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|