mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 15:07:13 +01:00
improve booked styling a bit
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import Footer from '../../../components/footer'
|
import Layout from '../../../components/layout'
|
||||||
import Header from '../../../components/header'
|
|
||||||
import { Booking } from '../../../db/booking'
|
import { Booking } from '../../../db/booking'
|
||||||
import { loadBookingData, storeBookingData } from '../../../helpers/storage'
|
import { loadBookingData, storeBookingData } from '../../../helpers/storage'
|
||||||
import { getServerSideBooking } from '../../../lib/getServerSideProps'
|
import { getServerSideBooking } from '../../../lib/getServerSideProps'
|
||||||
@@ -20,10 +19,8 @@ export default function ShowBookingStored({ booking }: { booking: Booking }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<Layout>
|
||||||
<Header />
|
<h3 className="mb-3 mt-6 text-lg">Vielen Dank für die Buchungsanfrage</h3>
|
||||||
<main className="main">
|
|
||||||
<h3 className="mb-3 text-lg">Vielen Dank für die Buchungsanfrage</h3>
|
|
||||||
<p className="mb-6">
|
<p className="mb-6">
|
||||||
Nach Prüfung bestätigen wir die Buchung zeitnah per E-Mail.
|
Nach Prüfung bestätigen wir die Buchung zeitnah per E-Mail.
|
||||||
</p>
|
</p>
|
||||||
@@ -54,9 +51,6 @@ export default function ShowBookingStored({ booking }: { booking: Booking }) {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</main>
|
</Layout>
|
||||||
|
|
||||||
<Footer />
|
|
||||||
</>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user