mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import Layout from '../components/layout'
|
|
import Book from '../components/book'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
<h1 className="text-xl font-extrabold mb-6">Buchungsanfrage</h1>
|
|
<Book />
|
|
</Layout>
|
|
)
|
|
}
|