design page booking & add page loginverify

This commit is contained in:
Ehsan
2024-08-25 17:50:20 +03:30
parent 92e48cadd3
commit 31ed32fc21
22 changed files with 5760 additions and 69 deletions
+9 -3
View File
@@ -1,7 +1,13 @@
function BookingPage() {
return (
<div>
import Date from "./date";
import Detail from "./detail";
function BookingPage({ doctor }) {
return (
<div
className="flex justify-center 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>
)
}