From 7fb9e8007f5c741c8d775dff1912b446c22e7b4e Mon Sep 17 00:00:00 2001 From: Jonas Pardon Date: Wed, 2 Oct 2019 23:00:11 +0200 Subject: [PATCH 1/2] Add Mailhog to utility resources --- CONTRIBUTORS.md | 3 ++- resources/utility.json | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e72c2f0..8a012a8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,4 +5,5 @@ These are lovely people who have helped this project: * twitter: @lostdesign - [Kevin](https://github.com/S3B4S) :dog: - [jacobparis](https://github.com/jacobparis) : Team Devcord - * twitter: @jacobmparis \ No newline at end of file + * twitter: @jacobmparis +- [JonasPardon](https://github.com/JonasPardon) diff --git a/resources/utility.json b/resources/utility.json index 079e184..bb1d032 100644 --- a/resources/utility.json +++ b/resources/utility.json @@ -163,6 +163,12 @@ "desc": "Let's Encrypt is a free, automated, and open certificate authority brought to you by the non-profit Internet Security Research Group (ISRG).", "url": "https://letsencrypt.org/", "tags": [] + }, + { + "title": "Mailhog", + "desc": "Web and API based SMTP testing.", + "url": "https://github.com/mailhog/MailHog", + "tags": [] } ] -} \ No newline at end of file +} From 2e54077731a141009edb4448cf31c646bec492a6 Mon Sep 17 00:00:00 2001 From: Jonas Pardon Date: Thu, 3 Oct 2019 10:26:05 +0200 Subject: [PATCH 2/2] Add icons section --- resources/icons.json | 30 ++++++++++++++++++++++++++++++ resources/index.js | 4 +++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 resources/icons.json diff --git a/resources/icons.json b/resources/icons.json new file mode 100644 index 0000000..72510a6 --- /dev/null +++ b/resources/icons.json @@ -0,0 +1,30 @@ +{ + "title": "Icons", + "slug": "/icons", + "resources": [ + { + "title": "Font awesome", + "desc": "CSS and LESS based font and icon toolkit.", + "url": "https://fontawesome.com/", + "tags": [] + }, + { + "title": "Icomoon", + "desc": "IcoMoon provides a package of vector icons, along with a free HTML5 app for making custom icon fonts or SVG sprites.", + "url": "https://icomoon.io/", + "tags": [] + }, + { + "title": "Icons8", + "desc": "Get free icons designed to combine perfectly and fit into the style of your design.", + "url": "https://icons8.com/", + "tags": [] + }, + { + "title": "Material Icons", + "desc": "Material icons are delightful, beautifully crafted symbols for common actions and items. Download on desktop to use them in your digital products for Android, iOS, and web.", + "url": "https://material.io/resources/icons", + "tags": [] + } + ] +} diff --git a/resources/index.js b/resources/index.js index d5f8890..353d8bb 100644 --- a/resources/index.js +++ b/resources/index.js @@ -12,6 +12,7 @@ import python from './python' import ruby from './ruby' import server from './server' import utility from './utility' +import icons from './icons' export default [ css, @@ -28,4 +29,5 @@ export default [ ruby, server, utility, -] \ No newline at end of file + icons, +]