Skip to content

Commit e40be03

Browse files
Added the space in between the full stop and the next word
Signed-off-by: Roshan Goswami <[email protected]>
1 parent efc8b50 commit e40be03

File tree

1 file changed

+183
-103
lines changed

1 file changed

+183
-103
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,118 +1,198 @@
1-
import React from "react";
1+
import React from 'react';
22

3-
import SEO from "../../../components/seo";
4-
import HowMesheryWorksHero from "../../../sections/Meshery/How-meshery-works/hero";
3+
import SEO from '../../../components/seo';
4+
import HowMesheryWorksHero from '../../../sections/Meshery/How-meshery-works/hero';
55

6-
import SMILogo from "../../../sections/Meshery/How-meshery-works/images/servicemeshinterface-icon-color.svg";
7-
import MesheryLogo from "../../../assets/images/meshery/icon-only/meshery-logo-light.svg";
8-
import VisualTopology from "../../../sections/Meshery/How-meshery-works/images/visual-topology.svg";
9-
import MesheryOperatorLogo from "../../../sections/Meshery/How-meshery-works/images/meshery-operator-dark.svg";
10-
import Smi from "../../../assets/images/app/projects/smi.svg";
11-
import WebA from "../../../sections/Meshery/How-meshery-works/images/webassembly_logo.svg";
12-
import SMP from "../../../sections/Meshery/How-meshery-works/images/smp-dark-text.webp";
13-
import { ReactComponent as GithubLogo } from "../../../assets/images/socialIcons/github_colorMode.svg";
14-
import loadable from "@loadable/component";
15-
const HowMesheryWorks = loadable(() => import ("../../../sections/Meshery/How-meshery-works"));
16-
const HowMesheryWorksSpecs = loadable(() => import ("../../../sections/Meshery/How-meshery-works/specs"));
6+
import SMILogo from '../../../sections/Meshery/How-meshery-works/images/servicemeshinterface-icon-color.svg';
7+
import MesheryLogo from '../../../assets/images/meshery/icon-only/meshery-logo-light.svg';
8+
import VisualTopology from '../../../sections/Meshery/How-meshery-works/images/visual-topology.svg';
9+
import MesheryOperatorLogo from '../../../sections/Meshery/How-meshery-works/images/meshery-operator-dark.svg';
10+
import Smi from '../../../assets/images/app/projects/smi.svg';
11+
import WebA from '../../../sections/Meshery/How-meshery-works/images/webassembly_logo.svg';
12+
import SMP from '../../../sections/Meshery/How-meshery-works/images/smp-dark-text.webp';
13+
import { ReactComponent as GithubLogo } from '../../../assets/images/socialIcons/github_colorMode.svg';
14+
import loadable from '@loadable/component';
15+
const HowMesheryWorks = loadable(() =>
16+
import('../../../sections/Meshery/How-meshery-works')
17+
);
18+
const HowMesheryWorksSpecs = loadable(() =>
19+
import('../../../sections/Meshery/How-meshery-works/specs')
20+
);
1721

1822
const OperatingServiceMeshes = () => {
1923
return (
2024
<>
21-
<HowMesheryWorksHero />
25+
<HowMesheryWorksHero />
2226
<HowMesheryWorks
23-
title="How Meshery Manages Cloud Native Infra"
24-
description="As the cloud native manager, Meshery offers support for more adapters than any other project or product in the world. Meshery uses adapters for managing the various service meshes."
25-
features={
26-
[
27-
{
28-
title: "GitOps: Configuration as Visual Design",
29-
icon: <GithubLogo alt="title"/>,
30-
description: <p>GitOps is a way to define workflows for declarative configuration using Git. Meshery greatly simplifies configuring and managing cloud native infrastructure at-scale across multiple clusters with a git-integrated experience.</p>
31-
},
32-
{
33-
title: "Supporting Service Mesh Interface",
34-
icon: SMILogo,
35-
description:
36-
<p>Every Meshery Adapter provides a common substrate of support for every service mesh, offering a
37-
standard set of management features across all service meshes.</p>,
38-
},
39-
{
40-
title: "Each service mesh adapter is unique",
41-
icon: MesheryLogo,
42-
description:
43-
<div><p>Adapters allow Meshery to interface with the different service meshes, exposing their differentiated value to users.Care is taken in each Meshery Adapter to expose the unique value of each service mesh. </p>
44-
<p>Consequently, each Meshery Adapter is not equally capable just as each service mesh is not equally
45-
capable as another service mesh.</p>
46-
</div>,
47-
},
48-
{
49-
title: "MeshMap",
50-
icon: VisualTopology,
51-
description:
52-
<div>
53-
<p>MeshMap enables all cloud native management operations from `mesheryctl` to Meshery's web-based user interface in visually interactive topology.</p><p>
54-
Designing and configuring your service mesh is as easy as dragging and dropping.</p>
55-
<p>Learn more about <a href="https://layer5.io/cloud-native-management/meshmap">MeshMap</a></p>
56-
</div>,
57-
},
58-
{
59-
title: "Extension Points",
60-
icon: MesheryLogo,
61-
description: <div>
62-
<p>Meshery is not just an application. It is a set of microservices where the central component is itself called Meshery. Integrators may extend Meshery by taking advantage of designated Extension Points. Extension points come in various forms and are available through Mesherys architecture.</p>
63-
<p>Learn more about <a href="https://docs.meshery.io/extensibility">Extension Points</a></p>
27+
title='How Meshery Manages Cloud Native Infra'
28+
description='As the cloud native manager, Meshery offers support for more adapters than any other project or product in the world. Meshery uses adapters for managing the various service meshes.'
29+
features={[
30+
{
31+
title: 'GitOps: Configuration as Visual Design',
32+
icon: <GithubLogo alt='title' />,
33+
description: (
34+
<p>
35+
GitOps is a way to define workflows for declarative
36+
configuration using Git. Meshery greatly simplifies configuring
37+
and managing cloud native infrastructure at-scale across
38+
multiple clusters with a git-integrated experience.
39+
</p>
40+
),
41+
},
42+
{
43+
title: 'Supporting Service Mesh Interface',
44+
icon: SMILogo,
45+
description: (
46+
<p>
47+
Every Meshery Adapter provides a common substrate of support for
48+
every service mesh, offering a standard set of management
49+
features across all service meshes.
50+
</p>
51+
),
52+
},
53+
{
54+
title: 'Each service mesh adapter is unique',
55+
icon: MesheryLogo,
56+
description: (
57+
<div>
58+
<p>
59+
Adapters allow Meshery to interface with the different service
60+
meshes, exposing their differentiated value to users. Care is
61+
taken in each Meshery Adapter to expose the unique value of
62+
each service mesh.{' '}
63+
</p>
64+
<p>
65+
Consequently, each Meshery Adapter is not equally capable just
66+
as each service mesh is not equally capable as another service
67+
mesh.
68+
</p>
6469
</div>
65-
},
66-
{
67-
title: "Meshery Operator with MeshSync",
68-
icon: MesheryOperatorLogo,
69-
description:
70-
<p>MeshSync's ease of use is simple, but tiered, discovery pipelines are powerful and independently scale across multiple Kubernetes clusters.</p>,
71-
},
72-
{
73-
title: "Managing multiple instances of the same type of service mesh",
74-
icon: MesheryLogo,
75-
description:
76-
<p>Adapters establish
77-
communication with Kubernetes and a specific type of service mesh.
78-
Multiple adapters of the same type may be deployed concurrently. Although,
79-
this isn’t strictly necessary for Meshery to communicate to more than one instance of the same type of service mesh.
80-
See the <a href="https://docs.meshery.io/guides/multiple-adapters" target="_blank" rel="noreferrer">Using Multiple Adapters</a> guide for more information.</p>,
81-
},
82-
{
83-
title: "Service Mesh Interface Conformance",
84-
icon: Smi,
85-
description:
86-
<p>Adapters allow Meshery to interface with the different service meshes, exposing their differentiated value to users.</p>,
87-
},
88-
{
89-
title: "WebAssembly Filters",
90-
icon: WebA,
91-
description:
92-
<p>Meshery dynamically loads and reloads WebAssembly (WASM) modules in service mesh data planes, enabling Envoy-based data planes to be more intelligent and responsive in real-time.</p>,
93-
},
94-
{
95-
title: "Service Mesh Performance",
96-
icon: SMP,
97-
description:
98-
<p>Track your MeshMark and compare with others.</p>,
99-
},
100-
{
101-
title: "Broad Platform Support",
102-
icon: MesheryLogo,
103-
description:
104-
<p>Deploy Meshery to one of ten different supported platforms.</p>,
105-
},
106-
]} />
70+
),
71+
},
72+
{
73+
title: 'MeshMap',
74+
icon: VisualTopology,
75+
description: (
76+
<div>
77+
<p>
78+
MeshMap enables all cloud native management operations from
79+
`mesheryctl` to Meshery's web-based user interface in visually
80+
interactive topology.
81+
</p>
82+
<p>
83+
Designing and configuring your service mesh is as easy as
84+
dragging and dropping.
85+
</p>
86+
<p>
87+
Learn more about{' '}
88+
<a href='https://layer5.io/cloud-native-management/meshmap'>
89+
MeshMap
90+
</a>
91+
</p>
92+
</div>
93+
),
94+
},
95+
{
96+
title: 'Extension Points',
97+
icon: MesheryLogo,
98+
description: (
99+
<div>
100+
<p>
101+
Meshery is not just an application. It is a set of
102+
microservices where the central component is itself called
103+
Meshery. Integrators may extend Meshery by taking advantage of
104+
designated Extension Points. Extension points come in various
105+
forms and are available through Mesherys architecture.
106+
</p>
107+
<p>
108+
Learn more about{' '}
109+
<a href='https://docs.meshery.io/extensibility'>
110+
Extension Points
111+
</a>
112+
</p>
113+
</div>
114+
),
115+
},
116+
{
117+
title: 'Meshery Operator with MeshSync',
118+
icon: MesheryOperatorLogo,
119+
description: (
120+
<p>
121+
MeshSync's ease of use is simple, but tiered, discovery
122+
pipelines are powerful and independently scale across multiple
123+
Kubernetes clusters.
124+
</p>
125+
),
126+
},
127+
{
128+
title:
129+
'Managing multiple instances of the same type of service mesh',
130+
icon: MesheryLogo,
131+
description: (
132+
<p>
133+
Adapters establish communication with Kubernetes and a specific
134+
type of service mesh. Multiple adapters of the same type may be
135+
deployed concurrently. Although, this isn’t strictly necessary
136+
for Meshery to communicate to more than one instance of the same
137+
type of service mesh. See the{' '}
138+
<a
139+
href='https://docs.meshery.io/guides/multiple-adapters'
140+
target='_blank'
141+
rel='noreferrer'
142+
>
143+
Using Multiple Adapters
144+
</a>{' '}
145+
guide for more information.
146+
</p>
147+
),
148+
},
149+
{
150+
title: 'Service Mesh Interface Conformance',
151+
icon: Smi,
152+
description: (
153+
<p>
154+
Adapters allow Meshery to interface with the different service
155+
meshes, exposing their differentiated value to users.
156+
</p>
157+
),
158+
},
159+
{
160+
title: 'WebAssembly Filters',
161+
icon: WebA,
162+
description: (
163+
<p>
164+
Meshery dynamically loads and reloads WebAssembly (WASM) modules
165+
in service mesh data planes, enabling Envoy-based data planes to
166+
be more intelligent and responsive in real-time.
167+
</p>
168+
),
169+
},
170+
{
171+
title: 'Service Mesh Performance',
172+
icon: SMP,
173+
description: <p>Track your MeshMark and compare with others.</p>,
174+
},
175+
{
176+
title: 'Broad Platform Support',
177+
icon: MesheryLogo,
178+
description: (
179+
<p>Deploy Meshery to one of ten different supported platforms.</p>
180+
),
181+
},
182+
]}
183+
/>
107184
<HowMesheryWorksSpecs />
108-
109185
</>
110186
);
111187
};
112188
export default OperatingServiceMeshes;
113189

114190
export const Head = () => {
115-
return <SEO title="Manage Meshery"
116-
description="How the cloud native management plane, Meshery works"
117-
image="/images/meshery-logo-dark-text.webp" />;
118-
};
191+
return (
192+
<SEO
193+
title='Manage Meshery'
194+
description='How the cloud native management plane, Meshery works'
195+
image='/images/meshery-logo-dark-text.webp'
196+
/>
197+
);
198+
};

0 commit comments

Comments
 (0)