Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to the AICPA site for the SOC2 logo #613

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export const estuaryLinkedinUrl =
export const estuaryProductFlowVideoUrl =
'https://www.youtube.com/embed/hlCh81ZbBik';

export const socTwoLink = 'https://www.aicpa.org/soc4so';

export type ConnectorType = 'capture' | 'materialization';

export type ButtonStyleVariants =
Expand Down
20 changes: 14 additions & 6 deletions src/components/SecurityCertificates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { StaticImage } from 'gatsby-plugin-image';
import Advantages from '../Advantages';
import SecureIcon from '../../svgs/secure-data.svg';
import OpenHubspotModal from '../HubSpot/OpenModal';
import { socTwoLink } from '../../../shared';
import OutboundLink from '../LinksAndButtons/OutboundLink';

interface SecurityCertificatesProps {
isDarkTheme?: boolean;
Expand Down Expand Up @@ -30,12 +32,18 @@ const SecurityCertificates = ({
'Estuary Flow is designed and tested to make sure your data and your systems stay secure.'
}
image={
<StaticImage
placeholder="none"
alt="Secure Your Data with Estuary Flow: Compliance and Certification"
src="../../images/product-page/section-ten/gdpr-ccpa-cpra-soc2-type2-compliant.png"
quality={100}
/>
<OutboundLink
target="_blank"
href={socTwoLink}
aria-label="Link to AICPA SOC for Service Organizations Engagements overview"
>
<StaticImage
placeholder="none"
alt="Secure Your Data with Estuary Flow: Compliance and Certification"
src="../../images/product-page/section-ten/gdpr-ccpa-cpra-soc2-type2-compliant.png"
quality={100}
/>
</OutboundLink>
}
advantages={[
{
Expand Down
Loading