diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-06-04 14:23:57 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-06-04 14:23:57 +0100 |
| commit | 824d8886cc5bf55e240dd413ab2a284b0cedb3f4 (patch) | |
| tree | 4d770fa1868e015ed875c7f0b590fddcfa663e66 /website/src/data | |
| parent | 079bfc2d3ab881f3c0f18106f314ab4816e01037 (diff) | |
Adds first link
Diffstat (limited to 'website/src/data')
| -rw-r--r-- | website/src/data/links.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/website/src/data/links.ts b/website/src/data/links.ts new file mode 100644 index 0000000..35677bc --- /dev/null +++ b/website/src/data/links.ts @@ -0,0 +1,19 @@ +type Digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'; + +type Link = { + href: string, + title: string, + description: string, + isoDateAdded: `20${Digit}${Digit}-${'0'|'1'}${Digit}-${'0'|'1'|'2'|'3'}${Digit}`, +}; + +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', + description: 'ChatGPT 3.5 gives bad answers half the time, and programmers miss the mistakes almost half the time. Be careful out there, folks.', + isoDateAdded: '2024-06-04', + }, +]; + +export default links; |
