upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
Showing only changes of commit 8b3d38cba6 - Show all commits

View File

@ -26,15 +26,21 @@ export default function Projects() {
{projectsData.map((d) => ( {projectsData.map((d) => (
<div className="p-4 md:w-1/2" key={d.title}> <div className="p-4 md:w-1/2" key={d.title}>
<div className="h-full border-2 border-gray-200 border-opacity-60 dark:border-gray-700 rounded-md overflow-hidden"> <div className="h-full border-2 border-gray-200 border-opacity-60 dark:border-gray-700 rounded-md overflow-hidden">
<Image <Link href={d.href} aria-label={`Link to ${d.title}`}>
alt={d.title} <Image
src={d.imgSrc} alt={d.title}
className="lg:h-48 md:h-36 object-cover object-center" src={d.imgSrc}
width={721} className="lg:h-48 md:h-36 object-cover object-center"
height={401} width={721}
/> height={401}
/>
</Link>
<div className="p-6"> <div className="p-6">
<h2 className="text-2xl font-bold leading-8 tracking-tight mb-3">{d.title}</h2> <h2 className="text-2xl font-bold leading-8 tracking-tight mb-3">
<Link href={d.href} aria-label={`Link to ${d.title}`}>
{d.title}
</Link>
</h2>
<p className="prose text-gray-500 max-w-none dark:text-gray-400 mb-3"> <p className="prose text-gray-500 max-w-none dark:text-gray-400 mb-3">
{d.description} {d.description}
</p> </p>