diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-10 15:19:27 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-10 16:21:20 +0100 |
| commit | 62afb57ff3e7b6516b0d3d39c88ed29a1468bd3a (patch) | |
| tree | 9e66f68c83d5a244d04050150ace13017cb7d1dc /src/config/social-media.ts | |
| parent | c9d5f6be49a89fad5a778c0342a27fc3452d863d (diff) | |
chore: add a social media widget on contact and cv pages
Diffstat (limited to 'src/config/social-media.ts')
| -rw-r--r-- | src/config/social-media.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/config/social-media.ts b/src/config/social-media.ts new file mode 100644 index 0000000..a2bb2ed --- /dev/null +++ b/src/config/social-media.ts @@ -0,0 +1,22 @@ +export const socialWebsites = [ + { + id: 'github', + name: 'Github', + url: 'https://github.com/ArmandPhilippot', + }, + { + id: 'gitlab', + name: 'Gitlab', + url: 'https://gitlab.com/ArmandPhilippot', + }, + { + id: 'linkedin', + name: 'LinkedIn', + url: 'https://www.linkedin.com/in/armandphilippot', + }, + { + id: 'twitter', + name: 'Twitter', + url: 'https://twitter.com/ArmandPhilippot', + }, +]; |
