From fa4389c9eeaf7e1901aba941beb38e3f8ac75605 Mon Sep 17 00:00:00 2001 From: Kieran O'Neill Date: Wed, 1 May 2024 17:15:37 +0100 Subject: [PATCH] feat: update license of kibisis to gnu apgl v3 (#49) * feat: update the license of kibisis to gnu agpl-v3 * refactor: comment out firefox download * chore: squash --- docusaurus.config.js | 2 +- .../DownloadSection/DownloadSection.tsx | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index eb4939d..821bbd7 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -148,7 +148,7 @@ const config = { footer: { copyright: ` `, logo: { diff --git a/src/components/DownloadSection/DownloadSection.tsx b/src/components/DownloadSection/DownloadSection.tsx index 725ca30..edbf146 100644 --- a/src/components/DownloadSection/DownloadSection.tsx +++ b/src/components/DownloadSection/DownloadSection.tsx @@ -8,14 +8,14 @@ import DownloadItem from './DownloadItem'; import { CHROME_STORE_LINK, EDGE_STORE_LINK, - FIREFOX_ADD_ON_LINK, + // FIREFOX_ADD_ON_LINK, } from '@site/src/constants'; // images import braveSvg from '@site/static/images/brave.svg'; import chromeSvg from '@site/static/images/chrome.svg'; import edgeSvg from '@site/static/images/edge.svg'; -import firefoxSvg from '@site/static/images/firefox.svg'; +// import firefoxSvg from '@site/static/images/firefox.svg'; // styles import styles from './styles.module.scss'; @@ -34,12 +34,12 @@ const DownloadSection: FC = ({ variant }: IProps) => { name: 'Chrome', SvgComponent: chromeSvg, }, - { - buttonLabel: 'Install', - downloadUri: FIREFOX_ADD_ON_LINK, - name: 'Firefox', - SvgComponent: firefoxSvg, - }, + // { + // buttonLabel: 'Install', + // downloadUri: FIREFOX_ADD_ON_LINK, + // name: 'Firefox', + // SvgComponent: firefoxSvg, + // }, { buttonLabel: 'Install', downloadUri: EDGE_STORE_LINK,