mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 23:17:12 +01:00
introduce jsx files
This commit is contained in:
committed by
Thomas Ruoff
parent
2921cee220
commit
7ca2322717
24
pages/index.jsx
Normal file
24
pages/index.jsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user