Skip to content

Commit

Permalink
feat: update license of kibisis to gnu apgl v3 (#49)
Browse files Browse the repository at this point in the history
* feat: update the license of kibisis to gnu agpl-v3

* refactor: comment out firefox download

* chore: squash
  • Loading branch information
kieranroneill authored May 1, 2024
1 parent 9f00c1f commit fa4389c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const config = {
footer: {
copyright: `
<div class="footer__copyright-container">
<p class="footer__text">Licensed under <a class="footer__text--link" href="${GITHUB_LINK}/blob/main/LICENSE" target="_blank">GPL-2.0</a>. Icons provided by <a class="footer__text--link" href="https://www.flaticon.com/" target="_blank">flaticon</a>.</p>
<p class="footer__text">Licensed under <a class="footer__text--link" href="${GITHUB_LINK}/blob/main/LICENSE" target="_blank">GNU AGPL-3.0</a>. Icons provided by <a class="footer__text--link" href="https://www.flaticon.com/" target="_blank">flaticon</a>.</p>
</div>
`,
logo: {
Expand Down
16 changes: 8 additions & 8 deletions src/components/DownloadSection/DownloadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -34,12 +34,12 @@ const DownloadSection: FC<IProps> = ({ 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,
Expand Down

0 comments on commit fa4389c

Please sign in to comment.