diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-18 20:30:00 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-18 20:30:00 +0100 |
| commit | 9f764e0c64f76f780be50e66dde18d0f56d48190 (patch) | |
| tree | e84c79744fef86a5515bc247c86c9488c5f977eb | |
| parent | 5bfb00f6cdbb369d834dbe27d213d80a821f8036 (diff) | |
Adds Rab bio
| -rw-r--r-- | public/images/commattee/rab-wilson.jpg | bin | 0 -> 736978 bytes | |||
| -rw-r--r-- | src/data/committee.ts | 21 |
2 files changed, 17 insertions, 4 deletions
diff --git a/public/images/commattee/rab-wilson.jpg b/public/images/commattee/rab-wilson.jpg Binary files differnew file mode 100644 index 0000000..bbfc252 --- /dev/null +++ b/public/images/commattee/rab-wilson.jpg 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; |
