Initial commit

This commit is contained in:
Francesco
2025-05-14 14:35:15 +02:00
commit c482b6b254
130 changed files with 13171 additions and 0 deletions

6
data/portfolio.ts Normal file
View File

@@ -0,0 +1,6 @@
import { allPortfolios } from "content-collections";
const projects = allPortfolios.sort((a, b) => {
return b.year - a.year;
});
export default projects;