Files
pfadi-bussle/pages/index.tsx
2020-09-09 00:25:09 +02:00

25 lines
526 B
TypeScript

import React from 'react'
import Head from 'next/head'
import Header from '../components/header'
import Footer from '../components/footer'
import Wizard from '../components/wizard/index'
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>
<Header />
<main className="flex-grow">
<Wizard />
</main>
<Footer />
</div>
)
}