summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/data/lallans/issue102.ts20
-rw-r--r--src/types/LallansIssueNumber.d.ts3
2 files changed, 22 insertions, 1 deletions
diff --git a/src/data/lallans/issue102.ts b/src/data/lallans/issue102.ts
new file mode 100644
index 0000000..208d464
--- /dev/null
+++ b/src/data/lallans/issue102.ts
@@ -0,0 +1,20 @@
+import img192w from '$images/lallans/issue102-192w.webp';
+import img274w from '$images/lallans/issue102-274w.webp';
+import type LallansIssue from '$types/LallansIssue';
+
+const issue: LallansIssue = {
+ issueNumber: 102,
+ img: {
+ width192: img192w,
+ width274: img274w,
+ },
+ issueName: 'Beltane/Lammas 2023',
+ price: '10.00',
+ uploadDate: '2023-10-16',
+ description: {
+ 'en-GB': 'The hundred-and-second issue of the Lallans magazine.',
+ sco: 'The hunner-an-saicont issue o the Lallans magazine.',
+ },
+};
+
+export default issue;
diff --git a/src/types/LallansIssueNumber.d.ts b/src/types/LallansIssueNumber.d.ts
index 29f07cc..52dc35a 100644
--- a/src/types/LallansIssueNumber.d.ts
+++ b/src/types/LallansIssueNumber.d.ts
@@ -68,6 +68,7 @@ type LallansIssueNumber =
| 98
| 99
| 100
- | 101;
+ | 101
+ | 102;
export default LallansIssueNumber;