rename js/x ts/x

This commit is contained in:
Thomas Ruoff
2020-08-26 22:36:27 +02:00
committed by Thomas Ruoff
parent 9853e31201
commit be1e22460d
23 changed files with 0 additions and 0 deletions

24
pages/index.tsx Normal file
View File

@@ -0,0 +1,24 @@
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>
)
}