mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 15:07:13 +01:00
add entry page with tailwind examples 😅
This commit is contained in:
22
pages/book.tsx
Normal file
22
pages/book.tsx
Normal 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 />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user