From 4c585f562ccd2a7474367d21ba772140dfb3b03d Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Wed, 23 Aug 2023 07:48:52 +0100 Subject: Adds about us section --- src/data/committee.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/data/committee.ts (limited to 'src/data') 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; -- cgit v1.2.3