From 18d7bc1e75d0fa54e02808ddf3a61b3ec77d5d7f Mon Sep 17 00:00:00 2001 From: Kilian Valkhof Date: Wed, 8 Jan 2020 11:14:36 +0100 Subject: [PATCH] add ubuntu image to person.js --- src/components/Person.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Person.js b/src/components/Person.js index 6a80cb0c..67ced3df 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -4,8 +4,9 @@ import iphone from '../images/iphone.png'; import android from '../images/android.png'; import windows from '../images/windows.svg'; import apple from '../images/apple.svg'; +import ubuntu from '../images/ubuntu.svg'; -const icons = { iphone, android, windows, apple }; +const icons = { iphone, android, windows, apple, ubuntu }; export default function Person({ person, currentTag }) { const url = new URL(person.url); const img = `https://logo.clearbit.com/${url.host}`;