diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-18 20:40:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-18 20:40:46 +0100 |
| commit | aaac97183965e6edd4cbab9a9ea3be1fb90bfef2 (patch) | |
| tree | 9bf71f6a448c506fd112fd7464811142ecbacaf2 /src/data | |
| parent | 244fda8c63356bfcc19a0ea437edf36458e4bc9b (diff) | |
| parent | d1b74fa2575cc435036a461e2dbc3c10865e3d96 (diff) | |
Merge pull request #5 from Sycamost/dev
Dev
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/committee.ts | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/src/data/committee.ts b/src/data/committee.ts index 42ca81c..c2f4824 100644 --- a/src/data/committee.ts +++ b/src/data/committee.ts @@ -3,6 +3,23 @@ import CommitteeRole from '$enums/CommitteeRole'; const committee: CommitteeMember[] = [ { + name: 'Rab Wilson', + roles: [CommitteeRole.Preses], + bio: { + sco: ` + Rab Wilson is a poet wha scrieves predominantly i the Scots leid. He wis + born an aye-an-oan bides i New Cumnock, East Ayrshire. He is forby a + playwreicht, newspaper columnist an commentator on the Scots leid. + `, + 'en-GB': ` + Rab Wilson is a poet who scrieves predominantly in the Scots language. + He was born and remains in New Cumnock, East Ayrshire. He is also a + playwright, newpapaer columnist and commentator on the Scots language. + `, + }, + imgSrc: '/images/commattee/rab-wilson.jpg', + }, + { name: 'Joe Carstairs', roles: [CommitteeRole.Secretar, CommitteeRole.Wabmaister], bio: { @@ -148,10 +165,6 @@ const committee: CommitteeMember[] = [ }, imgSrc: '/images/commattee/george-t-watt.jpg', }, - { - name: 'Rab Wilson', - roles: [], - }, ]; export default committee; |
