From 627f31c65c689dc0c742564aaa54166bd1bcab43 Mon Sep 17 00:00:00 2001
From: Thomas Ruoff
Date: Sun, 21 Nov 2021 23:05:11 +0100
Subject: [PATCH] improve booked styling a bit
---
pages/bookings/[uuid]/stored.tsx | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/pages/bookings/[uuid]/stored.tsx b/pages/bookings/[uuid]/stored.tsx
index 7289e17..f9cc137 100644
--- a/pages/bookings/[uuid]/stored.tsx
+++ b/pages/bookings/[uuid]/stored.tsx
@@ -1,7 +1,6 @@
import React, { useEffect, useState } from 'react'
import Link from 'next/link'
-import Footer from '../../../components/footer'
-import Header from '../../../components/header'
+import Layout from '../../../components/layout'
import { Booking } from '../../../db/booking'
import { loadBookingData, storeBookingData } from '../../../helpers/storage'
import { getServerSideBooking } from '../../../lib/getServerSideProps'
@@ -20,10 +19,8 @@ export default function ShowBookingStored({ booking }: { booking: Booking }) {
}
return (
- <>
-
-
- Vielen Dank für die Buchungsanfrage
+
+ Vielen Dank für die Buchungsanfrage
Nach Prüfung bestätigen wir die Buchung zeitnah per E-Mail.
@@ -54,9 +51,6 @@ export default function ShowBookingStored({ booking }: { booking: Booking }) {
)}
-
-
-
- >
+
)
}