From f977ee338c7eff240c26c793d7340de4a7b5788b Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:38:10 +0100 Subject: Adds Links page and fixes blog feed --- website/src/data/links.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'website/src/data') 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; -- cgit v1.2.3