Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
49 changes: 49 additions & 0 deletions src/components/pages/enterprise/distributions/distributions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ import ClockIcon from './images/clock.inline.svg';
import GradeIcon from './images/grade.inline.svg';
import SupportIcon from './images/support.inline.svg';

import SoloLogo from './images/solo.inline.svg';
import SoloMultiIcon from './images/solo-multi.inline.svg';
import SoloSecurityIcon from './images/solo-security.inline.svg';
import SoloSupportIcon from './images/solo-support.inline.svg';

const enterprise = {
title: 'Isovalent Enterprise for Cilium',
description: 'Enterprise Distribution maintained by the creators of Cilium.',
Expand All @@ -17,6 +22,14 @@ const enterprise = {
linkText: 'Learn more',
};

const gloo = {
title: 'Gloo Network for Cilium',
description: 'Enterprise Cilium CNI maintained by the co-creators of Istio Service Mesh.',
linkUrl: 'https://www.solo.io/products/gloo-network/',
linkTarget: '_blank',
linkText: 'Learn more',
};

const items = [
{ name: '24/7 Enterprise Support with SLA', icon: SupportIcon },
{ name: 'Hardened, Enterprise grade, Extended EOL', icon: GradeIcon },
Expand All @@ -26,6 +39,15 @@ const items = [
},
];

const glooItems = [
{ name: 'Multi-cluster, multi-tenant Cilium integration with Istio', icon: SoloMultiIcon },
{ name: '24/7 Enterprise Support with SLA', icon: SoloSupportIcon },
{
name: 'Performance, Security and Observability from Layer 2 through Layer 7',
icon: SoloSecurityIcon,
},
];

const title = 'Distributions & Support';
const Distributions = () => (
<section className="bg-gray-4 pb-12 pt-11 md:pb-20 md:pt-16 lg:pt-24 lg:pb-28 xl:pb-32">
Expand Down Expand Up @@ -58,6 +80,33 @@ const Distributions = () => (
</div>
))}
</div>
<div className="mt-6 flex flex-col divide-y divide-gray-3 rounded-xl bg-white px-8 py-8 shadow-card md:mt-10 lg:mt-14 lg:flex-row lg:divide-x lg:divide-y-0 lg:px-0">
<div className="flex-1 pb-6 lg:w-[340px] lg:flex-none lg:px-6 lg:pb-0 xl:px-8">
<SoloLogo className="h-[32px] w-auto" />
<Heading className="mt-3" tag="h3" size="xs">
{gloo.title}
</Heading>
<p className="mt-2.5">{gloo.description}</p>
<Link
className="mt-6"
theme="primary"
to={gloo.linkUrl}
target={gloo.linkTarget}
type="arrow"
>
{gloo.linkText}
</Link>
</div>
{glooItems.map(({ name, icon: Icon }, index) => (
<div
className="flex flex-1 flex-col items-stretch space-y-4 py-6 last:pb-0 xs:flex-row xs:items-center xs:space-y-0 xs:space-x-4 lg:flex-col lg:items-stretch lg:space-x-0 lg:space-y-6 lg:px-6 lg:py-0 lg:pt-4 xl:px-8"
key={index}
>
<Icon className="h-14 w-14 shrink-0 xs:h-[72px] xs:w-[72px]" />
<span className="font-bold" dangerouslySetInnerHTML={{ __html: name }} />
</div>
))}
</div>
</Container>
</section>
);
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading