Make BookingPage and ConfirmedBookingPage responsive

This commit is contained in:
Henry Hiles 2023-08-17 19:49:08 -04:00
parent e4f6a04c95
commit 500707844a
7 changed files with 40 additions and 22 deletions

View file

@ -4,7 +4,8 @@ import "../styles/ConfirmedBookingPage.css"
export const ConfirmedBookingPage = () => (
<article className="confirmed">
<h1>Booking Confirmed</h1>
<p>Your booking has been confirmed.</p>
<Link to="/">Back to home</Link>
<p>
Your booking has been confirmed. <Link to="/">Back to home</Link>
</p>
</article>
)