jonbio/app/projects/page.tsx

33 lines
1.0 KiB
TypeScript
Raw Normal View History

2021-02-12 18:51:59 +08:00
import projectsData from '@/data/projectsData'
2021-02-14 18:44:13 +08:00
import Card from '@/components/Card'
2021-02-12 18:51:59 +08:00
export default function Projects() {
return (
<>
<div className="divide-y divide-gray-200 dark:divide-gray-700">
2023-07-07 11:17:22 +08:00
<div className="space-y-2 pb-8 pt-6 md:space-y-5">
2021-02-12 18:51:59 +08:00
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
Projects
</h1>
<p className="text-lg leading-7 text-gray-500 dark:text-gray-400">
Showcase your projects with a hero image (16 x 9)
</p>
</div>
<div className="container py-12">
2022-01-31 23:58:10 +08:00
<div className="-m-4 flex flex-wrap">
2021-02-12 18:51:59 +08:00
{projectsData.map((d) => (
2021-02-14 18:44:13 +08:00
<Card
key={d.title}
title={d.title}
description={d.description}
imgSrc={d.imgSrc}
href={d.href}
/>
2021-02-12 18:51:59 +08:00
))}
</div>
</div>
</div>
</>
)
}