23 lines
754 B
TypeScript
23 lines
754 B
TypeScript
import { Link } from 'react-router-dom';
|
|
|
|
import { TimelinesWrapper } from '@/partials/timelines/default/item';
|
|
|
|
const ActivitiesVirtualTeam = () => {
|
|
return (
|
|
<TimelinesWrapper icon="like-shapes" line={false}>
|
|
<div className="flex flex-col">
|
|
<div className="text-sm font-medium text-gray-800">
|
|
Hosted a virtual
|
|
<Link to="/public-profile/profiles/creator" className="text-sm font-medium link">
|
|
team-building event
|
|
</Link>
|
|
, fostering collaboration and strengthening bonds among team members.
|
|
</div>
|
|
<span className="text-xs font-medium text-gray-500">1 month ago, 13:56 PM</span>
|
|
</div>
|
|
</TimelinesWrapper>
|
|
);
|
|
};
|
|
|
|
export { ActivitiesVirtualTeam };
|