mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import Layout from '../components/layout'
|
|
import Wizard from '../components/wizard/index'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
<h1 className="mb-3 text-xl font-extrabold">Buchungsanfrage</h1>
|
|
<Wizard />
|
|
</Layout>
|
|
)
|
|
}
|