feat: apply Fraunces font to ProjectCard title

This commit is contained in:
Ilia Mashkov
2026-05-18 12:39:33 +03:00
parent e00c1460e1
commit 543020f85c
@@ -33,7 +33,7 @@ export function ProjectCard({ title, year, description, tags, imageUrl }: Props)
<Card className={cn('group hover:shadow-brutal-xl transition-shadow duration-300')}>
<CardHeader>
<div className="flex flex-row justify-between items-start mb-3">
<CardTitle className="flex-1">{title}</CardTitle>
<CardTitle className="flex-1 font-heading">{title}</CardTitle>
<span className="brutal-border px-3 py-1 bg-blue text-cream text-sm">{year}</span>
</div>
<CardDescription>{description}</CardDescription>