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,8 +1,6 @@
import Layout from '../components/layout'
export default function Prices() {
return (
<Layout>
<>
<h1 className="mb-3 text-xl font-extrabold">Preise</h1>
<table className="divide-y divide-gray-200">
<thead className="bg-gray-50">
@@ -43,6 +41,6 @@ export default function Prices() {
</tr>
</tbody>
</table>
</Layout>
</>
)
}