Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useEffect, useCallback } from 'react';
import { Box, Flex, Heading, Paragraph, Note, Text } from '@contentful/f36-components';
import { Box, Flex, Heading, Paragraph, Text, TextLink } from '@contentful/f36-components';
import { ArrowSquareOutIcon } from '@contentful/f36-icons';
import { css } from '@emotion/css';
import tokens from '@contentful/f36-tokens';
import { useSDK } from '@contentful/react-apps-toolkit';
Expand All @@ -13,6 +14,12 @@ const styles = {
heading: css({
fontWeight: tokens.fontWeightDemiBold,
}),
disclosure: css({
border: `1px solid ${tokens.gray300}`,
borderRadius: tokens.borderRadiusMedium,
padding: tokens.spacingL,
width: '100%',
}),
};

const ConfigScreen = () => {
Expand Down Expand Up @@ -63,6 +70,21 @@ const ConfigScreen = () => {
copy-paste, reduce errors, and speed up your publishing workflow.
</Paragraph>
</Box>
<Box className={styles.disclosure}>
<Text>
<Text fontWeight="fontWeightDemiBold">Disclosure:</Text> The use and transfer of raw or
derived user data received from Google Workspace APIs will adhere to the{' '}
<TextLink
href="https://developers.google.com/terms/api-services-user-data-policy"
target="_blank"
rel="noopener noreferrer"
icon={<ArrowSquareOutIcon />}
alignIcon="end">
Google API Services User Data Policy
</TextLink>
, including the Limited Use requirements.
</Text>
</Box>
</Flex>
</Flex>
);
Expand Down
Loading