32 lines
965 B
TypeScript
32 lines
965 B
TypeScript
import Link from 'next/link';
|
|
|
|
function Recent({ datapackages }) {
|
|
return (
|
|
<section className="my-10 mx-4 lg:my-20">
|
|
<h1 className="text-2xl font-thin mb-4">Recent Datasets</h1>
|
|
<div className="flex flex-col lg:flex-row">
|
|
{datapackages.map((resource, index) => (
|
|
<div
|
|
key={index}
|
|
className="border px-4 mb-4 mr-3 border-gray-100 w-5/6 shadow-sm"
|
|
>
|
|
<h1 className="text-2xl font-thin">{resource.title}</h1>
|
|
<p className="text-gray-500">{resource.organization.description}</p>
|
|
<Link
|
|
href={`/@${
|
|
resource.organization ? resource.organization.name : 'dataset'
|
|
}/${resource.name}`}
|
|
>
|
|
<a className="pt-3 flex justify-end text-orange-500">
|
|
View Dataset
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default Recent;
|