Skip to content

Commit

Permalink
feat: add firefox add-on link (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranroneill authored Jan 13, 2024
1 parent e0b44a5 commit 08279d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/DownloadSection/DownloadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import Section from '@site/src/components/Section';
import DownloadItem from './DownloadItem';

// constants
import { CHROME_STORE_LINK, EDGE_STORE_LINK } from '@site/src/constants';
import {
CHROME_STORE_LINK,
EDGE_STORE_LINK,
FIREFOX_ADD_ON_LINK,
} from '@site/src/constants';

// images
import braveSvg from '@site/static/images/brave.svg';
Expand All @@ -32,6 +36,7 @@ const DownloadSection: FC<IProps> = ({ variant }: IProps) => {
},
{
buttonLabel: 'Install',
downloadUri: FIREFOX_ADD_ON_LINK,
name: 'Firefox',
SvgComponent: firefoxSvg,
},
Expand Down
2 changes: 2 additions & 0 deletions src/constants/Links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export const CHROME_STORE_LINK: string =
'https://chromewebstore.google.com/detail/kibisis/hcgejekffjilpgbommjoklpneekbkajb';
export const EDGE_STORE_LINK: string =
'https://microsoftedge.microsoft.com/addons/detail/kibisis/bajncpocmkioafbijldokfbjajelkbmc';
export const FIREFOX_ADD_ON_LINK: string =
'https://addons.mozilla.org/addon/kibisis/';
export const GITHUB_LINK: string =
'https://github.com/agoralabs-sh/kibisis-web-extension';
export const KIBISIS_LINK: string = 'https://kibis.is';
Expand Down

0 comments on commit 08279d1

Please sign in to comment.