26256f0379
- ProjectHero: full-viewport dark hero with blurred cover image overlay, animated entrance (back link → date → title → description), scroll indicator - ProjectMeta: reveal-animated metadata strip with top/bottom dividers, refined label/value typography using brand color tokens - ProjectTechnologies: outline pill tags with per-tag staggered reveal, hover border/color transition - ProjectsColumns: cleaner 2-col prose grid with wider gap - ProjectPreviewGrid: rounded-xl with subtle border, responsive 1→2 col - ProjectVisitButton: pill-shaped dark CTA replacing bordered rectangle - OtherProjects: image-first card layout with scroll reveal, hover scale + brightness on covers, sliding arrow, refined "Voir aussi" header - page.tsx: passes cover prop to ProjectHero, 900px max-width content column, semantic MDX prose styles via article selector chains Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
type props = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export function ProjectsColumns({ children }: props) {
|
|
return (
|
|
<div className="grid gap-8 lg:grid-cols-2 lg:gap-14">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|