writed project pages content

This commit is contained in:
2026-04-16 14:39:14 +02:00
parent 3a79088cce
commit fc2b481bd4
18 changed files with 104 additions and 83 deletions
+6 -9
View File
@@ -5,7 +5,8 @@ type props = {
projects: {
slug: string;
title: string;
subtitle: string;
description: string;
cover: string;
}[];
};
@@ -14,7 +15,7 @@ export function OtherProjects({ locale, projects }: props) {
return (
<section className="pb-20 pt-8">
<h2 className="mb-10 text-center text-5xl font-semibold">
<h2 className="mb-10 text-center text-[clamp(80px,10vw,128px)] font-serif text-brand-brown">
Autres projets
</h2>
@@ -25,13 +26,9 @@ export function OtherProjects({ locale, projects }: props) {
href={`/${locale}/works/${project.slug}`}
className="group block"
>
<div className="mb-3 text-2xl font-medium">{project.title}</div>
<div className="flex min-h-[220px] items-center justify-center rounded-[22px] bg-white text-4xl shadow-sm transition group-hover:-translate-y-1">
{project.title}
</div>
<p className="mt-3 text-sm text-neutral-500">{project.subtitle}</p>
<div className="mb-3 text-3xl font-sans">{project.title}</div>
<p className="mb-3 text-sm text-neutral-500">{project.description}</p>
<img className="flex min-h-[220px] items-center justify-center rounded-[22px] bg-white text-4xl shadow-sm transition group-hover:-translate-y-1" src={project.cover} alt="cover image" />
</Link>
))}
</div>