title comment and finish tap location in page doctor item

This commit is contained in:
Ehsan
2024-07-07 22:30:40 +03:30
parent 7315167325
commit cb214e67f1
5 changed files with 429 additions and 50 deletions
@@ -0,0 +1,9 @@
import React from 'react'
function Chart() {
return (
<div>Chart</div>
)
}
export default Chart
@@ -0,0 +1,21 @@
import { Button } from '@mui/material'
import React from 'react'
function Comments() {
return (
<div className='mt-4'>
<div>
<p className="text-[#525252] text-[20px] font-bold">موقعیت مکانی </p>
</div>
<div className='mt-8 flex items-center justify-start'>
<p className='text-[#616161] text-[16px] font-normal'>شما هم نظر خود را در مورد این پزشک به اشتراک بگذارید:</p>
<Button
variant='outlined'
className='!py-2.5 !px-9 !mr-4'
>ثبت نظر</Button>
</div>
</div>
)
}
export default Comments