first commit

This commit is contained in:
Olu Amey
2023-02-07 07:00:04 -05:00
parent 9b2145ff00
commit f437f27b66
17 changed files with 436 additions and 257 deletions
+26
View File
@@ -0,0 +1,26 @@
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>
);
}