Files
grafana/public/app/features/admin/migrate-to-cloud/EmptyState/InfoPaneLeft.tsx
Ashley Harrison b25667223c Box: add direction prop to Box (#83296)
add "direction" prop to Box
2024-02-23 13:38:36 +02:00

46 lines
2.1 KiB
TypeScript

import React from 'react';
import { Box } from '@grafana/ui';
import { t, Trans } from 'app/core/internationalization';
import { InfoItem } from './InfoItem';
export const InfoPaneLeft = () => {
return (
<Box display="flex" padding={2} gap={2} direction="column" backgroundColor="secondary">
<InfoItem
title={t('migrate-to-cloud.what-is-cloud.title', 'What is Grafana Cloud?')}
linkTitle={t('migrate-to-cloud.what-is-cloud.link-title', 'Learn about cloud features')}
linkHref="https://grafana.com/products/cloud"
>
<Trans i18nKey="migrate-to-cloud.what-is-cloud.body">
Grafana cloud is a fully managed cloud-hosted observability platform ideal for cloud native environments.
It&apos;s everything you love about Grafana without the overhead of maintaining, upgrading, and supporting an
installation.
</Trans>
</InfoItem>
<InfoItem
title={t('migrate-to-cloud.why-host.title', 'Why host with Grafana?')}
linkTitle={t('migrate-to-cloud.why-host.link-title', 'More questions? Talk to an expert')}
linkHref="https://grafana.com/contact"
>
<Trans i18nKey="migrate-to-cloud.why-host.body">
In addition to the convenience of managed hosting, Grafana Cloud includes many cloud-exclusive features like
SLOs, incident management, machine learning, and powerful observability integrations.
</Trans>
</InfoItem>
<InfoItem
title={t('migrate-to-cloud.is-it-secure.title', 'Is it secure?')}
linkTitle={t('migrate-to-cloud.is-it-secure.link-title', 'Grafana Labs Trust Center')}
linkHref="https://trust.grafana.com"
>
<Trans i18nKey="migrate-to-cloud.is-it-secure.body">
Grafana Labs is committed to maintaining the highest standards of data privacy and security. By implementing
industry-standard security technologies and procedures, we help protect our customers&apos; data from
unauthorized access, use, or disclosure.
</Trans>
</InfoItem>
</Box>
);
};