27 lines
938 B
React
27 lines
938 B
React
import React from "react";
|
|
import { Link } from "react-router-dom";
|
|
import localImgLoad from "../../lib/localImgLoad";
|
|
|
|
export default function HomeJobCard(props) {
|
|
return (
|
|
<Link
|
|
to="/my-collection/collection-item"
|
|
className="item w-full block group"
|
|
>
|
|
<div className="flex flex-col justify-between h-full">
|
|
<div className="content flex justify-between items-center mb-5">
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-gray dark:text-white tracking-wide">
|
|
<>{props?.title}</>
|
|
</h1>
|
|
</div>
|
|
{/*<SelectBox datas={filterDatas} action={dataSetHandler} />*/}
|
|
</div>
|
|
<div className="h-[233px]">
|
|
BEST IMAGE IN THE WORLLD
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|