fix responsive all pages & change style page list blog and blog item & add date picker

This commit is contained in:
Ehsan
2024-08-23 18:57:28 +03:30
parent c62fb78f8c
commit 9701547d1f
35 changed files with 19276 additions and 225 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ import Doctors from './components/doctors';
function ClinicPage({ data, doctors }) {
const [value, setValue] = useState(1);
const [value, setValue] = useState(0);
const handleChange = (event, newValue) => setValue(newValue);
const Components = [
@@ -19,12 +19,12 @@ function ClinicPage({ data, doctors }) {
];
return (
<div className="pt-[136px] mt-[40px] padding-responsive">
<div className="pt-[40px] sm:pt-[70px] md:pt-[100px] lg:pt-[136px] mt-[40px] padding-responsive">
<Tabs
value={value}
handleChange={handleChange}
/>
<div className='mt-[32px]'>
<div className='mt-[24px] sm:mt-[27px] md:mt-[30px] lg:mt-[32px]'>
{Components[value]}
</div>
</div>