improve booked styling a bit

This commit is contained in:
Thomas Ruoff
2021-11-21 23:05:11 +01:00
parent bc20909286
commit 627f31c65c

View File

@@ -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 />
</>
) )
} }