portfolio/src/pages/Experience.jsx

61 lines
1.7 KiB
React
Raw Normal View History

2023-10-12 09:56:13 +02:00
import { Link } from "react-router-dom";
import { useRecoilValue } from "recoil";
import { projectsAtom } from "../store";
import Tags from "../components/Tags";
2022-07-27 16:36:16 +02:00
function Experiance() {
2023-10-12 09:56:13 +02:00
const experianceList = useRecoilValue(projectsAtom);
const experianceListUI = experianceList.map((item, key) => {
return (
2024-09-25 13:34:57 +02:00
<section
className="flex-1 gap-4 mb-12 bg-[#e0e0e0] border rounded-3xl shadow-box"
key={item.id}
>
<div>
<div className="p-4">
<img className="rounded-3xl" src={item.img[0]} />
2023-10-12 09:56:13 +02:00
</div>
2024-09-25 13:34:57 +02:00
<div className="flex flex-col px-4 pt-4 pb-8">
<div>
<h2 className="text-subTMiniPhone md:text-subTMini mb-4 ">
{item.title}
</h2>
</div>
<div className="text-base mb-6 line-clamp-3 md:line-clamp-6">
<p>{item.info}</p>
</div>
<Tags listOfTags={item.tags} />
<div className="grow"></div>
<div className=" text-right">
<Link
className=" drop-shadow-doublelight hover:drop-shadow-light "
to={`/experience/${item.id}`}
>
read more
</Link>
</div>
2023-10-12 09:56:13 +02:00
</div>
</div>
</section>
);
});
2022-07-27 16:36:16 +02:00
return (
2024-01-02 23:04:17 +01:00
<div className="relative">
<div id="experience" className=" absolute -top-16 "></div>
2024-09-25 13:34:57 +02:00
<div className=" min-h-screen">
2024-02-04 22:31:04 +01:00
<h2 className=" text-subTPhone md:text-subT font-headline">
Experience<span className=" text-highlight">.</span>
</h2>
2024-09-25 13:34:57 +02:00
<div className="py-4 flex flex-col md:flex-row gap-4">
{experianceListUI}
</div>
2024-02-04 22:31:04 +01:00
</div>
2022-07-27 16:36:16 +02:00
</div>
);
}
export default Experiance;