import Link from "next/link"; import NotesInfo from '../public/notes.json'; function RecentNotes() { const notes = Object.entries(NotesInfo) .map(([slug, note]) => { return { slug, title: note.title, mtime: new Date(note.mtime) } }) .sort( (a, b) => { return b.mtime.getTime() - a.mtime.getTime(); } ); return (