summaryrefslogtreecommitdiff
path: root/src/data/committee.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/committee.ts')
-rw-r--r--src/data/committee.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/data/committee.ts b/src/data/committee.ts
new file mode 100644
index 0000000..0d077b8
--- /dev/null
+++ b/src/data/committee.ts
@@ -0,0 +1,23 @@
+import type { CommitteeMember } from '$types/CommitteeMember';
+import CommitteeRole from 'enums/CommitteeRole';
+
+const committee: CommitteeMember[] = [
+ {
+ name: 'Joe Carstairs',
+ roles: [CommitteeRole.Secretar, CommitteeRole.Wabmaister],
+ bio: {
+ sco: `
+ Joe haes been i the Associe syne 2019. He is a Scots leid lairner an
+ believes eydent at the Scots leid belangs awbody. He is frae Perth
+ but bides eenou i Embro, at he haes bidden in syne 2018.
+ `,
+ 'en-GB': `
+ Joe has been in the Society since 2019. He is a Scots language learner
+ and believes passionately that the Scots language belongs to everyone.
+ He is from Perth but now lives in Edinburgh, where he lived since 2018.
+ `,
+ },
+ },
+];
+
+export default committee;