diff --git a/frontend/src/Pages/ContributorsPage/ContributorsPage.tsx b/frontend/src/Pages/ContributorsPage/ContributorsPage.tsx index 5affaf8ee..9b0240064 100644 --- a/frontend/src/Pages/ContributorsPage/ContributorsPage.tsx +++ b/frontend/src/Pages/ContributorsPage/ContributorsPage.tsx @@ -12,14 +12,20 @@ import { type Contributor, ContributorItem } from './components'; // biome-ignore format: array should not be formatted const CONTRIBUTORS: Contributor[] = [ // H17 - { name: 'Kevin Kristiansen', github: 'KevinKristiansen', from: 'H17', to: 'V20', websjef: { from: 'V18', to: 'H18' } }, + { + name: 'Kevin Kristiansen', + github: 'KevinKristiansen', + from: 'H17', + to: 'V20', + websjef: { from: 'V18', to: 'H18' }, + }, // H19 { name: 'Emil Telstad', github: 'emilte', from: 'H19' }, { name: 'Sigve Røkenes', github: 'evgiz', from: 'H19', to: 'H23', websjef: { from: 'H20', to: 'V21' } }, // V20 { name: 'Marcus Frenje', github: 'Frenje123', from: 'V20' }, // H20 - { name: 'Magnus Øvre Sygard', github: 'magsyg', picture:sygard, from: 'H20' }, + { name: 'Magnus Øvre Sygard', github: 'magsyg', picture: sygard, from: 'H20' }, { name: 'Snorre Skjellestad Kristiansen', github: 'snorrekr', from: 'H20', websjef: { from: 'H21', to: 'V22' } }, // V21 { name: 'Johanne Dybevik', github: 'JohanneD', from: 'V21', to: 'V24' }, @@ -27,13 +33,19 @@ const CONTRIBUTORS: Contributor[] = [ { name: 'Mathias Aas', github: 'Mathias-a', from: 'H21', websjef: { from: 'H22', to: 'V23' } }, // V22 { name: 'Sindre Lothe', github: 'sindrelothe', from: 'V22', to: 'H23' }, - { name: 'Simen Myrrusten', github: 'nemisis84', from: 'V22', picture: simenProffen}, + { name: 'Simen Myrrusten', github: 'nemisis84', from: 'V22', picture: simenProffen }, // H22 { name: 'Snorre Sæther', github: 'Snorre98', from: 'H22', picture: snorre98, websjef: { from: 'H24', to: 'V25' } }, { name: 'Eirik Hoem', github: 'eiriksho', from: 'H22', to: 'V23' }, { name: 'Simen Seeberg-Rommetveit', github: 'simensee', from: 'H22' }, // V23 - { name: 'Robin Espinosa Jelle', github: 'robines', from: 'V23', picture: robines, websjef: { from: 'H23', to: 'V24' } }, + { + name: 'Robin Espinosa Jelle', + github: 'robines', + from: 'V23', + picture: robines, + websjef: { from: 'H23', to: 'V24' }, + }, { name: 'Johanne Grønlien Gjedrem', github: 'johannegg', from: 'V23' }, { name: 'Tinius Presterud', github: 'tiniuspre', from: 'V23' }, // H23 @@ -43,6 +55,7 @@ const CONTRIBUTORS: Contributor[] = [ { name: 'Erik Hoff', github: 'aTrueYety', from: 'H23' }, // V24 { name: 'Emil Solberg', github: 'emsoraffa', from: 'H24' }, + { name: 'Lida Victoria Johnsen', github: 'lidavic', from: 'H24' }, ]; export function ContributorsPage() {