check responsive & page dashboard user account & turns & transactions & comments

This commit is contained in:
Ehsan
2024-09-03 03:04:55 +03:30
parent bb154ac63f
commit 13cc7796c3
55 changed files with 1887 additions and 92 deletions
@@ -0,0 +1,22 @@
import Image from "next/image"
function Comment({ data }) {
return (
<li
className="flex flex-col gap-[8px] w-full"
>
<div className="flex items-start justify-between w-full">
<div className="flex items-center justify-start gap-[16px]">
<Image
src={data.profile}
alt="profile"
height={87}
width={87}
/>
</div>
</div>
</li>
)
}
export default Comment