mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import ExternalLink from '../../../../common/components/external-link/ExternalLink';
|
|
import { discordUrl, documentationUrl, githubUrl, 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.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.Section>
|
|
<Panel.Section>
|
|
<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>
|
|
</Panel.Section>
|
|
<Panel.Section>
|
|
<Panel.SubHeader>Current version</Panel.SubHeader>
|
|
<AppVersion />
|
|
</Panel.Section>
|
|
</>
|
|
);
|
|
}
|