change response file & request get user-profile & change design dashboard page & handle limit page dashboard

This commit is contained in:
Ehsan
2025-05-31 03:35:23 +03:30
parent 0969eca274
commit 80c74361eb
38 changed files with 233 additions and 121 deletions
@@ -0,0 +1,50 @@
import FieldLabel from "@/components/contactUs/FieldLabel";
import Field from "@/app/component/Field";
import AutoSelector from "@/app/component/element/AutoSelector";
const listIntensity = [
{ label: "شدید" },
{ label: "متوسط" },
{ label: "خفیف" },
];
function Content({ setData, data }) {
const handleChange = (name, value) =>
setData((prev) => ({ ...prev, [name]: value }));
return (
<div className="mt-[32px] md:mt-[36px] lg:mt-[40px] flex flex-col gap-[24px] md:gap-[28px] lg:gap-[32px] px-0 sm:px-[52px]">
<FieldLabel title="ماده آلرژی‌زا">
<Field
title=""
type="text"
name="substance"
isPlaceHolder={true}
value={data?.substance}
handleChange={handleChange}
/>
</FieldLabel>
<FieldLabel title="واکنش">
<Field
title=""
type="text"
name="reaction"
isPlaceHolder={true}
value={data?.reaction}
handleChange={handleChange}
/>
</FieldLabel>
<FieldLabel title="ماده آلرژی‌زا">
<AutoSelector
label="شدت"
name="severity"
list={listIntensity}
value={data?.severity}
updateData={handleChange}
/>
</FieldLabel>
</div>
);
}
export default Content;