mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
import ExternalLink from '../../../../common/components/link/external-link/ExternalLink';
|
|
import {
|
|
buyMeACoffeeUrl,
|
|
discordUrl,
|
|
documentationUrl,
|
|
githubSponsorUrl,
|
|
githubUrl,
|
|
subredditUrl,
|
|
websiteUrl,
|
|
} from '../../../../externals';
|
|
import * as Panel from '../../panel-utils/PanelUtils';
|
|
import AppVersion from './AppVersion';
|
|
|
|
export default function AboutPanel() {
|
|
return (
|
|
<>
|
|
<Panel.Header>About Ontime</Panel.Header>
|
|
<Panel.Section>
|
|
<Panel.Card>
|
|
<Panel.SubHeader>Ontime</Panel.SubHeader>
|
|
<Panel.Paragraph>
|
|
Free, open-source software for managing rundowns and event timers
|
|
<ExternalLink href={websiteUrl}>www.getontime.no</ExternalLink>
|
|
</Panel.Paragraph>
|
|
<Panel.Paragraph>
|
|
Considering sponsoring our work
|
|
<ExternalLink href={githubSponsorUrl}>GitHub Sponsors</ExternalLink>
|
|
<ExternalLink href={buyMeACoffeeUrl}>Buy Me a Coffee</ExternalLink>
|
|
</Panel.Paragraph>
|
|
<Panel.Paragraph>
|
|
If you are looking for an online version of Ontime, consider 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>
|
|
<ExternalLink href={documentationUrl}>Read the docs</ExternalLink>
|
|
<ExternalLink href={githubUrl}>Follow the project on GitHub</ExternalLink>
|
|
<ExternalLink href={discordUrl}>Discord server</ExternalLink>
|
|
<ExternalLink href={subredditUrl}>Subreddit</ExternalLink>
|
|
</Panel.Section>
|
|
</>
|
|
);
|
|
}
|