Adds Links page and fixes blog feed

This commit is contained in:
Joe Carstairs
2024-06-05 09:38:10 +01:00
parent b5a434c959
commit f977ee338c
8 changed files with 111 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ type Link = {
isoDateAdded: `20${Digit}${Digit}-${'0'|'1'}${Digit}-${'0'|'1'|'2'|'3'}${Digit}`,
};
const links: Link[] = [
const LINKS: Link[] = [
{
href: 'https://dl.acm.org/doi/pdf/10.1145/3613904.3642596',
title: 'Is Stack Overflow Obsolete? An Empirical Study of the Characteristics of ChatGPT Answers to Stack Overflow Questions',
@@ -28,4 +28,4 @@ const links: Link[] = [
},
];
export default links;
export default LINKS;