46 lines
1 KiB
JavaScript
46 lines
1 KiB
JavaScript
import React from 'react';
|
|
|
|
import { Alert, Button } from '@patternfly/react-core';
|
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
|
|
|
import { DEVELOPERS_URL } from '../../../constants';
|
|
|
|
const DeveloperProgramButton = () => {
|
|
return (
|
|
<Button
|
|
component="a"
|
|
target="_blank"
|
|
variant="link"
|
|
icon={<ExternalLinkAltIcon />}
|
|
iconPosition="right"
|
|
isInline
|
|
href={DEVELOPERS_URL}
|
|
>
|
|
Red Hat Developer Program
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
const CentOSAcknowledgement = () => {
|
|
return (
|
|
<Alert
|
|
variant="info"
|
|
isPlain
|
|
isInline
|
|
title={
|
|
<>
|
|
CentOS Stream builds are intended for the development of future
|
|
versions of RHEL and are not supported for production workloads or
|
|
other use cases.
|
|
</>
|
|
}
|
|
>
|
|
<p>
|
|
Join the <DeveloperProgramButton /> to learn about paid and no-cost RHEL
|
|
subscription options.
|
|
</p>
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
export default CentOSAcknowledgement;
|