mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 07:29:08 +00:00
docs: add links to sponsor
This commit is contained in:
committed by
Carlos Valente
parent
9be6febcda
commit
d2bdb1ea03
@@ -12,6 +12,9 @@ export const discordUrl = 'https://discord.com/invite/eje3CSUEXm';
|
|||||||
export const documentationUrl = 'https://docs.getontime.no';
|
export const documentationUrl = 'https://docs.getontime.no';
|
||||||
export const customFieldsDocsUrl = 'https://docs.getontime.no/features/custom-fields/';
|
export const customFieldsDocsUrl = 'https://docs.getontime.no/features/custom-fields/';
|
||||||
|
|
||||||
|
export const githubSponsorUrl = 'https://github.com/sponsors/cpvalente';
|
||||||
|
export const buyMeACoffeeUrl = 'https://buymeacoffee.com/cpvalente';
|
||||||
|
|
||||||
// resolve environment
|
// resolve environment
|
||||||
export const appVersion = version;
|
export const appVersion = version;
|
||||||
export const isProduction = import.meta.env.MODE === 'production';
|
export const isProduction = import.meta.env.MODE === 'production';
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
import ExternalLink from '../../../../common/components/external-link/ExternalLink';
|
import ExternalLink from '../../../../common/components/external-link/ExternalLink';
|
||||||
import { discordUrl, documentationUrl, githubUrl, websiteUrl } from '../../../../externals';
|
import {
|
||||||
|
buyMeACoffeeUrl,
|
||||||
|
discordUrl,
|
||||||
|
documentationUrl,
|
||||||
|
githubSponsorUrl,
|
||||||
|
githubUrl,
|
||||||
|
websiteUrl,
|
||||||
|
} from '../../../../externals';
|
||||||
import * as Panel from '../../panel-utils/PanelUtils';
|
import * as Panel from '../../panel-utils/PanelUtils';
|
||||||
|
|
||||||
import AppVersion from './AppVersion';
|
import AppVersion from './AppVersion';
|
||||||
@@ -9,22 +16,29 @@ export default function AboutPanel() {
|
|||||||
<>
|
<>
|
||||||
<Panel.Header>About Ontime</Panel.Header>
|
<Panel.Header>About Ontime</Panel.Header>
|
||||||
<Panel.Section>
|
<Panel.Section>
|
||||||
|
<Panel.Card>
|
||||||
<Panel.SubHeader>Ontime</Panel.SubHeader>
|
<Panel.SubHeader>Ontime</Panel.SubHeader>
|
||||||
<Panel.Paragraph>
|
<Panel.Paragraph>
|
||||||
Free, open-source software for managing rundowns and event timers
|
Free, open-source software for managing rundowns and event timers
|
||||||
<ExternalLink href={websiteUrl}>www.getontime.no</ExternalLink>
|
<ExternalLink href={websiteUrl}>www.getontime.no</ExternalLink>
|
||||||
</Panel.Paragraph>
|
</Panel.Paragraph>
|
||||||
</Panel.Section>
|
<Panel.Paragraph>
|
||||||
<Panel.Section>
|
Considering sponsoring our work
|
||||||
|
<ExternalLink href={githubSponsorUrl}>GitHub Sponsors</ExternalLink>
|
||||||
|
<ExternalLink href={buyMeACoffeeUrl}>Buy Me a Coffee</ExternalLink>
|
||||||
|
</Panel.Paragraph>
|
||||||
|
<Panel.Paragraph>
|
||||||
|
And trying out our cloud service
|
||||||
|
<ExternalLink href={websiteUrl}>www.getontime.no</ExternalLink>
|
||||||
|
</Panel.Paragraph>
|
||||||
|
</Panel.Card>
|
||||||
|
<Panel.SubHeader>Current version</Panel.SubHeader>
|
||||||
|
<AppVersion />
|
||||||
<Panel.SubHeader>Links</Panel.SubHeader>
|
<Panel.SubHeader>Links</Panel.SubHeader>
|
||||||
<ExternalLink href={documentationUrl}>Read the docs</ExternalLink>
|
<ExternalLink href={documentationUrl}>Read the docs</ExternalLink>
|
||||||
<ExternalLink href={githubUrl}>Follow the project on GitHub</ExternalLink>
|
<ExternalLink href={githubUrl}>Follow the project on GitHub</ExternalLink>
|
||||||
<ExternalLink href={discordUrl}>Discord server</ExternalLink>
|
<ExternalLink href={discordUrl}>Discord server</ExternalLink>
|
||||||
</Panel.Section>
|
</Panel.Section>
|
||||||
<Panel.Section>
|
|
||||||
<Panel.SubHeader>Current version</Panel.SubHeader>
|
|
||||||
<AppVersion />
|
|
||||||
</Panel.Section>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user