inspect path by breadcrumbs

This commit is contained in:
Thomas Ruoff
2020-12-25 00:50:12 +01:00
parent 29347b9019
commit bb5f94491f
12 changed files with 30 additions and 18 deletions

View File

@@ -174,7 +174,7 @@ export default function BookingBillPage({
return (
<>
<Header label="Abrechung" />
<Header />
<main className="main">
{booking && (
<form className="form" onSubmit={onSubmit}>

View File

@@ -78,7 +78,7 @@ export default function ShowBookingAdmin({
return (
<>
<Header label="Buchung" />
<Header />
<main className="main py-3">
<h2 className="text-3xl">Buchung {booking.uuid}</h2>
<Calendar start={booking.startDate} end={booking.endDate} />

View File

@@ -29,7 +29,7 @@ export const getServerSideProps = withSession(async (context) => {
export default function AdminRecentBookings({ bookings }) {
return (
<>
<Header label="Buchungsliste" />
<Header />
<main className="main py-3">
{bookings.map((booking: any) => (
<div

View File

@@ -43,7 +43,7 @@ export default function Login() {
return (
<>
<Header label="Admin Login" />
<Header />
<main className="main w-64">
<form className="form" onSubmit={onSubmit}>
<Input

View File

@@ -6,7 +6,7 @@ import Wizard from '../components/wizard/index'
export default function Home() {
return (
<>
<Header label="Anfrage" />
<Header />
<main className="main">
<Wizard />
</main>

View File

@@ -57,7 +57,7 @@ export default function ShowBooking({
return (
<>
<Header label="Ihre Buchung" />
<Header />
<main className="main">
<div>
<strong>Buchungsstatus:</strong> {getBookingStatus(booking.status)}

View File

@@ -25,7 +25,7 @@ export default function ShowBookingStored({
return (
<>
<Header label="Eingangsbestätigung" />
<Header />
<main className="main">
<h3 className="text-lg mb-3">Vielen Dank für die Buchungsanfrage</h3>
<p className="mb-6">

View File

@@ -4,7 +4,7 @@ import Header from '../components/header'
export default function Impressum() {
return (
<>
<Header label="Impressum" />
<Header />
<main className="main">
<h1 className="mb-3 text-xl font-extrabold">Impressum</h1>

View File

@@ -4,7 +4,7 @@ import Header from '../components/header'
export default function Privacy() {
return (
<>
<Header label="Datenschutzerklärung" />
<Header />
<main className="main text-gray-900">
<h1 className="mb-3 text-xl font-extrabold">Datenschutzerklärung</h1>
<h2 className="mb-2 text-lg font-extrabold">Geltungsbereich</h2>

View File

@@ -4,7 +4,7 @@ import Header from '../components/header'
export default function Terms() {
return (
<>
<Header label="AGBs" />
<Header />
<main className="main text-gray-900">
<h1 className="mb-3 text-xl font-extrabold">
Allgemeine Geschäftsbedinungen