project pages created and populated automatically

This commit is contained in:
2026-04-16 10:15:14 +02:00
parent 82e6e3dc01
commit 5e1368f790
17 changed files with 2320 additions and 101 deletions
+11
View File
@@ -0,0 +1,11 @@
type props = {
children: React.ReactNode;
};
export function ProjectsColumns({ children }: props) {
return (
<div className="grid gap-6 md:grid-cols-2">
{children}
</div>
);
}