summaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-12 08:52:26 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-12 08:56:29 +0100
commite297cdb1b0ccd39de00b39c0548a0be4b05372eb (patch)
tree37e861e008d3ea0311ed0b01f2d43bbe7168cd5f /src/data
parent4c10e112f9a86150028e178bc4d5fd6b416f300b (diff)
Adds issue data
Diffstat (limited to 'src/data')
-rw-r--r--src/data/lallans/index.ts1
-rw-r--r--src/data/lallans/issue104.ts46
2 files changed, 47 insertions, 0 deletions
diff --git a/src/data/lallans/index.ts b/src/data/lallans/index.ts
index db443d2..bdb09ad 100644
--- a/src/data/lallans/index.ts
+++ b/src/data/lallans/index.ts
@@ -78,6 +78,7 @@ export const getLallansIssue: LallansIssueGetterTable = {
100: async () => (await import('./issue100')).default,
101: async () => (await import('./issue101')).default,
102: async () => (await import('./issue102')).default,
+ 104: async () => (await import('./issue104')).default,
};
export type LallansIssueGetterTable = { [key in LallansIssueNumber]: () => Promise<LallansIssue> };
diff --git a/src/data/lallans/issue104.ts b/src/data/lallans/issue104.ts
new file mode 100644
index 0000000..55a22d1
--- /dev/null
+++ b/src/data/lallans/issue104.ts
@@ -0,0 +1,46 @@
+import img192w from '$images/lallans/issue104-192w.jpg';
+import img274w from '$images/lallans/issue104-274w.jpg';
+import type LallansIssue from '$types/LallansIssue';
+
+const issue: LallansIssue = {
+ issueNumber: 104,
+ img: {
+ width192: img192w,
+ width274: img274w,
+ },
+ issueName: 'Lammas 2024',
+ price: '10.00',
+ uploadDate: '2024-06-12',
+ description: {
+ 'en-GB': 'The hundred-and-fourth issue of the Lallans magazine.',
+ sco: 'The hunner-an-fowert issue o the Lallans magazine.',
+ },
+ contributors: [
+ 'Brendan McCluskey',
+ 'Braxfield',
+ 'Craig Aitchison',
+ 'Tracy Ann Harvey',
+ 'Tom Ellett',
+ 'Hugh McMillan',
+ 'Jim Aitken',
+ 'Lynn Valentine',
+ 'Gavin MacDougall',
+ 'David Bleiman',
+ 'Dauvit Horsbroch',
+ 'Iain WD Forde',
+ 'Hugh Pyper',
+ 'Maureen Sangster',
+ 'Stuart McHardy',
+ 'Tom Hubbard',
+ 'Andrew Matthews',
+ 'Elaine Morton',
+ 'Kevin Connelly',
+ 'George T Watt',
+ 'WS Milne',
+ 'Andrew Urquhart',
+ 'Moira Dalgetty',
+ 'Olive Ritchie',
+ ],
+};
+
+export default issue;