summaryrefslogtreecommitdiff
path: root/website/src/data
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-05 09:38:10 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-05 09:38:10 +0100
commitf977ee338c7eff240c26c793d7340de4a7b5788b (patch)
treee5803001ec972c176e7a87884455ff2dcad7c6c7 /website/src/data
parentb5a434c9596f6792f8f574c5641d4cbe1dd5c289 (diff)
Adds Links page and fixes blog feed
Diffstat (limited to 'website/src/data')
-rw-r--r--website/src/data/links.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/src/data/links.ts b/website/src/data/links.ts
index cd1e746..6816149 100644
--- a/website/src/data/links.ts
+++ b/website/src/data/links.ts
@@ -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;