Ivan Li
de1da22508
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 10m33s
Co-authored-by: Ivan Li <ivanli2048@gmail.com> Reviewed-on: #3
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import projectsData from '@/data/projectsData'
|
|
import Card from '@/components/Card'
|
|
import { genPageMetadata } from 'app/seo'
|
|
|
|
export const metadata = genPageMetadata({ title: 'Projects' })
|
|
|
|
export default function Projects() {
|
|
return (
|
|
<>
|
|
<div className="divide-y divide-gray-200 dark:divide-gray-700">
|
|
<div className="space-y-2 pb-8 pt-6 md:space-y-5">
|
|
<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">
|
|
<div className="-m-4 flex flex-wrap">
|
|
{projectsData.map((d) => (
|
|
<Card
|
|
key={d.title}
|
|
title={d.title}
|
|
description={d.description}
|
|
imgSrc={d.imgSrc}
|
|
href={d.href}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|