move Layout into _app.tsx

This commit is contained in:
Thomas Ruoff
2022-09-09 00:17:47 +02:00
committed by Thomas Ruoff
parent 7389289b81
commit 2fd3a47e72
12 changed files with 112 additions and 132 deletions

View File

@@ -1,11 +1,10 @@
import Layout from '../components/layout'
import Book from '../components/book'
export default function Home() {
return (
<Layout>
<>
<h1 className="mb-3 text-xl font-extrabold">Buchungsanfrage</h1>
<Book />
</Layout>
</>
)
}