mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-23 05:26:30 +00:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
import { allPortfolios } from "content-collections";
|
|
|
|
const projects = allPortfolios.sort((a, b) => {
|
|
return b.year - a.year;
|
|
});
|
|
export default projects; |