I am working on creating a project component using React:
Despite my efforts, I have not been able to find the correct documentation for assistance. Additionally, I am facing challenges in utilizing next/image
to ensure that it is the correct size.
This is my progress so far.
const Project = ({ image, title, description, technologies }) => {
return (
<div className="relative w-full h-64 bg-white">
<Image fill src={"/placeholder.jpg"} />
<div className="absolute w-[50%] h-8 bg-green-500 top-10 -left-10">
Express, MongoDB, Node.js, React.js
</div>
<p>Project #2</p>
<p>Blah blah blahs</p>
</div>
);
};
Here is how it currently appears: