diff --git a/packages/documentation/.storybook/blocks/footer.tsx b/packages/documentation/.storybook/blocks/footer.tsx index a64503e76b..2f58d78201 100644 --- a/packages/documentation/.storybook/blocks/footer.tsx +++ b/packages/documentation/.storybook/blocks/footer.tsx @@ -1,26 +1,78 @@ import React from 'react'; -interface Developer { +interface TeamMember { name: string; title: string; - avatar: string; + githubImageId: string; + githubUsername: string; } -const DEVELOPERS: Developer[] = [ +const TEAM_MEMBERS: TeamMember[] = [ { name: 'Philipp Gfeller', - title: 'Lead UI Developer', - avatar: 'https://avatars.githubusercontent.com/u/1659006?v=4', + title: 'Lead Potato', + githubImageId: '1659006', + githubUsername: 'gfellerph', }, { name: 'Alizé Debray', - title: 'UI Developer', - avatar: 'https://avatars.githubusercontent.com/u/33580481?v=4', + title: 'UI Mademoiselle', + githubImageId: '33580481', + githubUsername: 'alizedebray', }, { name: 'Oliver Schürch', + title: 'Señor Developer', + githubImageId: '9716662', + githubUsername: 'oliverschuerch', + }, + { + name: 'Myrta Sakellariou', + title: 'Mama Pigxel', + githubImageId: '66249294', + githubUsername: 'myrta2302', + }, + { + name: 'Lea Gardavaud', + title: 'UI Developer', + githubImageId: '183501002', + githubUsername: 'leagrdv', + }, + { + name: 'Alona Zherdetska', + title: 'Component Fairy', + githubImageId: '138328641', + githubUsername: 'alionazherdetska', + }, + { + name: 'Tim Schär', title: 'UI Developer', - avatar: 'https://avatars.githubusercontent.com/u/9716662?v=4', + githubImageId: '59233938', + githubUsername: 'schaertim', + }, + { + name: 'Rouven Steiger', + title: 'Art Guy EDK', + githubImageId: '104423005', + githubUsername: 'rouvenpost', + }, + { + name: 'Christian Zundel', + title: 'UX Designer', + githubImageId: '119845956', + githubUsername: 'Cian77', + }, + { + name: 'Alessio Travaglini', + title: 'Token Orchestrator', + githubImageId: '158268546', + githubUsername: 'Vandapanda', + }, + { + name: 'Romain Veya', + title: 'UI Developer', + githubImageId: '111903046', + githubUsername: 'veyaromain', }, ]; @@ -43,20 +95,25 @@ export default (params: { pathToStoryFile?: String }) => (
-

Support

-
- {DEVELOPERS.sort(() => (Math.random() > 0.5 ? 1 : -1)).map((developer, index) => ( -
- -
-

- {developer.name} -

-

{developer.title}

-
-
+

Design System Team Members

+
+