next 13, remove unused, update incorrect/outdated

This commit is contained in:
2023-09-20 00:25:34 -04:00
parent 797d13fd0d
commit b5ca20b93d
28 changed files with 8581 additions and 13741 deletions

View File

@@ -9,9 +9,7 @@ function QuickLinks() {
Object.entries(Pages).map(([title, link], i) => {
const extern = link.match(/^http/) && `blue extern` || '';
return (
<Link key={i} href={link}>
<a className={`${extern} link button`}>{title}</a>
</Link>
<Link key={i} href={link} className={`${extern} link button`}>{title}</Link>
);
})
}
@@ -19,4 +17,4 @@ function QuickLinks() {
);
}
export default QuickLinks;
export default QuickLinks;