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,