From 62afb57ff3e7b6516b0d3d39c88ed29a1468bd3a Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 10 Jan 2022 15:19:27 +0100 Subject: chore: add a social media widget on contact and cv pages --- src/config/social-media.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/config/social-media.ts (limited to 'src/config') 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', + }, +]; -- cgit v1.2.3