Skip to content

Commit

Permalink
content: add page for data platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
glenngillen committed Jan 16, 2025
1 parent eb4ca8f commit 7f914e7
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 4 deletions.
79 changes: 79 additions & 0 deletions src/content/landing-pages/data-platforms.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
title: Secure connectivity for enterprise data platforms
hero_text: Protect _your customers'_ data
hero_image: no-need-for-complicated-network
hero_animated: true
hero_animation_start_at: 1.5
hero_aspect_priority: width
subtext: Add instant, private, and secure connections to your data platform.
list_features: false
examples:
- name: How to add security as a feature
url: /blog/building-secure-saas-platforms
features:
- title: Easier than PrivateLink
icon: clock
image: no-need-for-complicated-network
text: |
Business critical connections are trivially easy to establish with
Ockam - particularly when compared to a PrivateLink. Simply, run an
Ockam Node next to your remote application, and go to the Snowflake
Marketplace to add Ockam’s Native App to your Snowflake environment.
- icon: clock
image: integrate-customer-systems
title: Unlock new product growth
text: |
If you're running a SaaS platform, Ockam allows you to offer new capabilities
to your highest value customers. Our *zero-trust* and *networkless* approach provides
allows private & secure point-to-point connections to your managed services.
Expand into high ACV customer segments with features that support entirely private
connectivity demanded by large enterprises. Add new high-value features that
integrate into *self-hosted* systems.
- title: Frictionless customer experience
image: saas-agent
animate: true
text: |
Your customers get the user experience they deserve. Instead of pushing
onto them all
the hard connectivity problems, such as setting up VPNs or changing firewall
configurations, you can offer a holistic solution that feels like a natural
_part of your product_.
Provide them a custom `your-company-agent` to run that will have their systems
connected within minutes.
- icon: cloud
title: Support multi-cloud deployments
image: multicloud
text: |
Ockam's agnostic to network-level and cloud-specific features. That means no
matter which cloud your customers are using, or if they're using multiple
clouds, you've a single approach that works consistently wherever your customers
are. That includes other on-prem environments, data centers, or even a server
that's under someone's desk.
- icon: shieldcheck
title: Trust your security team can depend on
image: certification-logos
text: |
Ockam's approach uses existing and well established open source
technologies and frameworks. We build trust through transparency so your
CISO can be confident everything meets their requirements. The
cryptographic and messaging protocols are
[publicly documented](https://docs.ockam.io/reference/protocols) and
the implementations are
[open source and available on GitHub](https://github.com/build-trust/ockam).
We've published an independent third-party audit by
the security research firm [Trail of Bits](https://www.trailofbits.com),
we've passed the security reviews of our major partners, and we're SOC2
compliant.
The [current status of our latest audits and compliance controls](https://audits.ockam.io)
are also available.
- title: Data authenticity & integrity
image: guaranteed-authenticity
text: |
The approach to mutual authentication of every app that Ockam provides results
in strong data governance guarantees around the authenticity and integrity of
the data moving through your system.
---
5 changes: 3 additions & 2 deletions src/content/landing-pages/saas-platforms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ features:
image: saas-agent
animate: true
text: |
Your customers get the user experience they deserve. Instead of pushing all
Your customers get the user experience they deserve. Instead of pushing
onto them all
the hard connectivity problems, such as setting up VPNs or changing firewall
configurations, you can offer a holistic solution that feels like a natural
_part of your product_.
Expand Down Expand Up @@ -79,7 +80,7 @@ features:
text: |
The approach to mutual authentication of every app that Ockam provides results
in strong data governance guarantees around the authenticity and integrity of
the messages moving through your system.
the wessages moving through your system.
- title: Self-managed deployments
subtitle: Cloud & On-prem / Bring Your Own Cloud
image: cloud-on-prem
Expand Down
4 changes: 2 additions & 2 deletions src/views/for/common/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const Hero: FC<HeroProps> = ({
}) => {
const heroText = (): JSX.Element => (
<>
{text.split(/(_\w.*?\w_)/).map((string) => {
const highlight = string.match(/^_(\w.*?\w)_$/);
{text.split(/(_\w.*?[\w']_)/).map((string) => {
const highlight = string.match(/^_(\w.*?[\w'])_$/);
if (highlight) {
return (
<Box key={string} as="span" color="brand.500">
Expand Down

0 comments on commit 7f914e7

Please sign in to comment.