From dda1130888a8d596bf9bc6c04a6f4ffee1c7f4e9 Mon Sep 17 00:00:00 2001 From: Mathew Antony Date: Wed, 17 Jan 2024 09:53:06 -0800 Subject: [PATCH 1/2] Added new icon for dive deeper card --- src/helpers/help-card-data.js | 6 ++++++ src/helpers/icons.js | 13 +++++++++++++ 2 files changed, 19 insertions(+) diff --git a/src/helpers/help-card-data.js b/src/helpers/help-card-data.js index da4daaf1..ce1c5f26 100644 --- a/src/helpers/help-card-data.js +++ b/src/helpers/help-card-data.js @@ -16,6 +16,12 @@ const helpCardData = [ highlightColor: 'blue-light', link: '/help/getting-started' }, + { + id: 'dive-deeper', + icon: , + highlightColor: 'yellow-light', + link: '/help/dive-deeper' + }, { id: 'tutorials', icon: , diff --git a/src/helpers/icons.js b/src/helpers/icons.js index 56b82aa1..66109e5e 100644 --- a/src/helpers/icons.js +++ b/src/helpers/icons.js @@ -20,6 +20,19 @@ export const GettingStartedIcon = () => ( ); +export const DiveDeeperIcon = () => ( + + + + +); + export const TutorialsIcon = () => ( Date: Wed, 17 Jan 2024 10:13:49 -0800 Subject: [PATCH 2/2] Fixed missing import --- src/helpers/help-card-data.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/help-card-data.js b/src/helpers/help-card-data.js index ce1c5f26..c8deefd6 100644 --- a/src/helpers/help-card-data.js +++ b/src/helpers/help-card-data.js @@ -1,6 +1,7 @@ import React from 'react'; import { GettingStartedIcon, + DiveDeeperIcon, TutorialsIcon, HowToVideosIcon, FaqIcon,