chore: remove refs to kaiso and opencollective

This commit is contained in:
David Ralph
2026-01-03 11:27:40 +00:00
parent 8265bf06e7
commit 49c4c0ecdb
3 changed files with 4 additions and 27 deletions

View File

@@ -24,6 +24,5 @@ export const REPO_NAME = 'mue';
export const EMAIL = 'hello@muetab.com';
export const TWITTER_HANDLE = 'getmue';
export const DISCORD_SERVER = 'zv8C9F8';
export const OPENCOLLECTIVE_USERNAME = 'mue';
export const VERSION = '7.1.2';

View File

@@ -2,7 +2,7 @@ import variables from 'config/variables';
import { PureComponent } from 'react';
import { MdEmail, MdContactPage } from 'react-icons/md';
import { FaDiscord } from 'react-icons/fa';
import { SiGithubsponsors, SiOpencollective, SiX } from 'react-icons/si';
import { SiGithubsponsors, SiX } from 'react-icons/si';
import { BiDonateHeart } from 'react-icons/bi';
import { Tooltip, Button } from 'components/Elements';
@@ -142,7 +142,7 @@ class About extends PureComponent {
alt="Logo"
/>
<div className="aboutText">
<span className="title">Mue, by Kaiso</span>
<span className="title">Mue</span>
<span className="subtitle">
{variables.getMessage('modals.main.settings.sections.about.version.title')}{' '}
{variables.constants.VERSION}
@@ -168,19 +168,6 @@ class About extends PureComponent {
The Mue Authors
</a>
</span>
<br></br>
<span className="subtitle">
Copyright 2023-2024{' '}
<a
className="link"
href="https://kaiso.one"
target="_blank"
rel="noopener noreferrer"
>
{' '}
Kaiso One Ltd
</a>
</span>
</div>
<span className="subtitle">Licensed under the BSD-3-Clause License</span>
<span className="subtitle">
@@ -236,7 +223,7 @@ class About extends PureComponent {
<div className="aboutContact">
<Button
type="linkButton"
href={'https://opencollective.com/' + variables.constants.OPENCOLLECTIVE_USERNAME}
href={'https://github.com/sponsors/' + variables.constants.ORG_NAME}
icon={<BiDonateHeart />}
label={variables.getMessage('modals.main.settings.sections.about.support_donate')}
/>
@@ -246,12 +233,6 @@ class About extends PureComponent {
icon={<SiGithubsponsors />}
tooltipTitle="Github Sponsors"
/>
<Button
type="linkIconButton"
href={'https://opencollective.com/' + variables.constants.OPENCOLLECTIVE_USERNAME}
icon={<SiOpencollective />}
tooltipTitle="Open Collective"
/>
</div>
</div>

View File

@@ -1,6 +1,6 @@
import { memo } from 'react';
import { FaDiscord } from 'react-icons/fa';
import { SiGithubsponsors, SiOpencollective, SiX } from 'react-icons/si';
import { SiGithubsponsors, SiX } from 'react-icons/si';
function QuicklinksSkeleton() {
return (
@@ -15,9 +15,6 @@ function QuicklinksSkeleton() {
<div>
<SiGithubsponsors />
</div>
<div>
<SiOpencollective />
</div>
</div>
</div>
);