|
|
|
@ -1,18 +1,10 @@ |
|
|
|
|
import React from "react"; |
|
|
|
|
import CurrentDateShamsi from "../CurrentDateShamsi"; |
|
|
|
|
import CurrentTime from "../CurrentTime"; |
|
|
|
|
import ProfileInfo from "../ProfileInfo"; |
|
|
|
|
import DistributedData from "../DistributedData"; |
|
|
|
|
|
|
|
|
|
const UserProfileInfo = () => { |
|
|
|
|
return ( |
|
|
|
|
<div className="flex flex-col"> |
|
|
|
|
{/* ? time */} |
|
|
|
|
<div className="flex flex-row items-center mb-2"> |
|
|
|
|
<span className="text-xs ml-2 text-[#0F0543] ">ساعت</span> |
|
|
|
|
<CurrentTime color={"text-[#2A527A]"} fontSize={"text-xs"} /> |
|
|
|
|
</div> |
|
|
|
|
{/* ? date */} |
|
|
|
|
<CurrentDateShamsi color={"text-[#2A527A]"} fontSize={"text-xs"} /> |
|
|
|
|
<div> |
|
|
|
|
<DistributedData items={} /> |
|
|
|
|
</div> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|