summaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-23 07:48:52 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-23 07:48:52 +0100
commit4c585f562ccd2a7474367d21ba772140dfb3b03d (patch)
treeb8f24b7247cd005e6c1618460bb43473f4c9ccc8 /src/data
parent42d557e9c6c13f84769a52644ddbcc576a1bb817 (diff)
Adds about us section
Diffstat (limited to 'src/data')
-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;