From 9f764e0c64f76f780be50e66dde18d0f56d48190 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Mon, 18 Sep 2023 20:30:00 +0100 Subject: Adds Rab bio --- public/images/commattee/rab-wilson.jpg | Bin 0 -> 736978 bytes src/data/committee.ts | 21 +++++++++++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 public/images/commattee/rab-wilson.jpg diff --git a/public/images/commattee/rab-wilson.jpg b/public/images/commattee/rab-wilson.jpg new file mode 100644 index 0000000..bbfc252 Binary files /dev/null and b/public/images/commattee/rab-wilson.jpg differ 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 @@ -2,6 +2,23 @@ import type { CommitteeMember } from '$types/CommitteeMember'; 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], @@ -148,10 +165,6 @@ const committee: CommitteeMember[] = [ }, imgSrc: '/images/commattee/george-t-watt.jpg', }, - { - name: 'Rab Wilson', - roles: [], - }, ]; export default committee; -- cgit v1.2.3 From d1b74fa2575cc435036a461e2dbc3c10865e3d96 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Mon, 18 Sep 2023 20:33:37 +0100 Subject: Changes font stack --- public/css/variables/typography.css | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/public/css/variables/typography.css b/public/css/variables/typography.css index 810a129..f8515fd 100644 --- a/public/css/variables/typography.css +++ b/public/css/variables/typography.css @@ -9,20 +9,34 @@ --font-serif: Alegreya, - Sitka, "Sitka Display", "Sitka Heading", "Sitka Text", -apple-system-ui-serif, - "Droid Serif", - ui-serif, - serif; + Iowan Old Style, + Apple Garamond, + Baskerville, + Sitka, "Sitka Display", "Sitka Heading", "Sitka Text", + Times New Roman, + Droid Serif, + Times, + Source Serif Pro, + serif, + Apple Color Emoji, + Segoe UI Emoji, + Segoe UI Symbol; + --font-sans-serif: 'Alegreya Sans', Lato, -apple-system, - system-ui, BlinkMacSystemFont, - "Segoe UI", - Roboto, - "Helvetica Neue", - Arial, - sans-serif; + avenir next, + avenir, + segoe ui, + helvetica neue, + helvetica, + Cantarell, + Ubuntu, + roboto, + noto, + arial, + sans-serif } \ No newline at end of file -- cgit v1.2.3