fixed project page design

This commit is contained in:
2026-04-16 11:55:31 +02:00
parent 2bf8bae473
commit 15f39c4cb2
6 changed files with 71 additions and 62 deletions
+6 -6
View File
@@ -1,11 +1,11 @@
type props = {
children: React.ReactNode;
children: React.ReactNode;
};
export function ProjectsColumns({ children }: props) {
return (
<div className="grid gap-6 md:grid-cols-2">
{children}
</div>
);
return (
<div className="grid gap-6 text-justify text-base font-sans lg:grid-cols-2 lg:space-x-6">
{children}
</div>
);
}