created booking section and form component

This commit is contained in:
Yusuf Ipek
2021-05-03 14:08:22 +03:00
parent 43bb82cfc1
commit 29cf4280df
5 changed files with 86 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
import Form from "../../components/form/form";
function Booking() {
return (
<section className="section-book">
<div className="row">
<div className="book">
<div className="book__form">
<div className="u-margin-bottom-medium">
<h2 className="heading-secondary">Start booking now</h2>
</div>
<Form />
</div>
</div>
</div>
</section>
);
}
export default Booking;