15 lines
506 B
JavaScript
15 lines
506 B
JavaScript
import Date from "./date";
|
|
import Detail from "./detail";
|
|
|
|
function BookingPage({ doctor }) {
|
|
return (
|
|
<div
|
|
className="flex flex-col lg:flex-row justify-center gap-0 lg:gap-[24px] padding-responsive
|
|
items-stretch pt-[calc(12px_+_75px_+_32px)] sm:pt-[calc(21px_+_75px_+_45px)] md:pt-[calc(30px_+_75px_+_58px)] lg:pt-[calc(40px_+_75px_+_78px)]">
|
|
<Detail doctor={doctor} />
|
|
<Date doctor={doctor} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BookingPage |