summaryrefslogtreecommitdiffstats
path: root/src/config/social-media.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-29 23:25:26 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-29 23:25:26 +0100
commitf49dfba86b9ac745ddc374ee0f02f03d7e81d872 (patch)
treeea647377926391e9391759d95f95824515b286ca /src/config/social-media.ts
parentb2686521cf2ca6bb0b5c5164de72d3d39d5c510e (diff)
refactor(widgets): move social media websites from config to widget
I only use this config inside the SocialMedia widget so it makes more sense to gather them. In addition I can translate the website names if needed.
Diffstat (limited to 'src/config/social-media.ts')
-rw-r--r--src/config/social-media.ts22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/config/social-media.ts b/src/config/social-media.ts
deleted file mode 100644
index a2bb2ed..0000000
--- a/src/config/social-media.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-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',
- },
-];