mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
30 lines
631 B
JavaScript
30 lines
631 B
JavaScript
import React from 'react'
|
|
|
|
import Head from 'next/head'
|
|
|
|
import Wizard from '../components/wizard'
|
|
import Footer from '../components/footer'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="mx-3 flex flex-col min-h-screen">
|
|
<Head>
|
|
<title>Pfadi Bussle Buchen</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main className="flex-grow">
|
|
<h1 className="text-3xl">Pfadi Bussle Buchen</h1>
|
|
|
|
<p className="mb-8">
|
|
Du willst das Pfadi Bussle buchen? Hier bist du richtig!
|
|
</p>
|
|
|
|
<Wizard />
|
|
</main>
|
|
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|