mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
import React from 'react'
|
|
|
|
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 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;
|
|
}
|
|
|
|
.Selectable
|
|
.DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
|
|
background-color: #f0f8ff !important;
|
|
color: #4a90e2;
|
|
}
|
|
.Selectable .DayPicker-Day {
|
|
border-radius: 0 !important;
|
|
}
|
|
.Selectable .DayPicker-Day--start {
|
|
border-top-left-radius: 50% !important;
|
|
border-bottom-left-radius: 50% !important;
|
|
}
|
|
.Selectable .DayPicker-Day--end {
|
|
border-top-right-radius: 50% !important;
|
|
border-bottom-right-radius: 50% !important;
|
|
}
|
|
.Selectable .DayPicker-Day--dayBooked:not(.DayPicker-Day--outside) {
|
|
color: #505050;
|
|
background-color: #fcc;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|