add entry page with tailwind examples 😅

This commit is contained in:
Thomas Ruoff
2020-11-25 00:38:45 +01:00
parent 2b0bc396c3
commit 54da0c7f9a
4 changed files with 81 additions and 8 deletions

22
pages/book.tsx Normal file
View File

@@ -0,0 +1,22 @@
import Head from 'next/head'
import React from 'react'
import Footer from '../components/footer'
import Header from '../components/header'
import Wizard from '../components/wizard/index'
export default function Home() {
return (
<>
<Head>
<title>Pfadi Bussle</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<Header label="Pfadi Bussle" />
<main className="main">
<Wizard />
</main>
<Footer />
</>
)
}