Skip to content

Commit d8fcef4

Browse files
Merge pull request #7503 from Daniel-1600/fix/broken-images-learning-paths
fix: broken images and typo on mastering-meshery page
2 parents 81ddc07 + 94d456c commit d8fcef4

File tree

1 file changed

+49
-23
lines changed
  • src/components/Learn-Components/Setup-Pre-Requisites

1 file changed

+49
-23
lines changed

src/components/Learn-Components/Setup-Pre-Requisites/index.js

Lines changed: 49 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,93 @@
11
import React from "react";
22
import SetupPreReqWrapper from "./setup-pre-req.style";
33
import { BsTerminalFill } from "@react-icons/all-files/bs/BsTerminalFill";
4-
5-
const meshery = "../../../assets/images/meshery/icon-only/meshery-logo-light.svg";
6-
const mesheryOperator = "../../../assets/images/meshery-operator/meshery-operator-dark.svg";
7-
4+
import meshery from "../../../assets/images/meshery/icon-only/meshery-logo-light.svg";
5+
import mesheryOperator from "../../../assets/images/meshery-operator/meshery-operator-dark.svg";
86

97
const SetupPreReq = () => (
108
<SetupPreReqWrapper>
119
<div className="get-started-desc" id="pre-requisites">
1210
<h2>Prerequisites</h2>
13-
<p>Learning Paths are designed to be accessible to a wide range of learners, from beginners to experienced professionals. However, certain paths may assume a basic understanding of specific technologies or concepts.</p>
11+
<p>
12+
Learning Paths are designed to be accessible to a wide range of
13+
learners, from beginners to experienced professionals. However, certain
14+
paths may assume a basic understanding of specific technologies or
15+
concepts.
16+
</p>
1417
</div>
1518
<div className="container-card" id="Set up">
16-
<a href="/cloud-native-management/meshery"
17-
target="_blank"
18-
>
19+
<a href="/cloud-native-management/meshery" target="_blank">
1920
<div className="card">
2021
<div className="card-header">
2122
<h2>Prerequisites</h2>
2223
<BsTerminalFill />
2324
</div>
2425
<ul>
2526
<li>Familiarity with Linux command line</li>
26-
<li>Optional: Prior experience with cloud platforms (AWS, Azure, GCP)</li>
27+
<li>
28+
Optional: Prior experience with cloud platforms (AWS, Azure, GCP)
29+
</li>
2730
<li>Familiarity with GitHub and Helm</li>
2831
<li>Understanding of infrastructure as code (IaC) principles</li>
2932
<li>Familiarity with containerization (e.g., Docker)</li>
3033
<li>Knowledge of Kubernetes architecture and components</li>
3134
</ul>
3235
</div>
3336
</a>
34-
<a href="https://playground.meshery.io/" id="Run Meshery"
35-
target="_blank" rel="noreferrer"
37+
<a
38+
href="https://playground.meshery.io/"
39+
id="Run Meshery"
40+
target="_blank"
41+
rel="noreferrer"
3642
>
3743
<div className="card">
3844
<div className="card-header">
39-
<h2>Acess to Meshery</h2>
40-
<img src={meshery} alt="Meshery" className="setup-imgs" loading="lazy" />
45+
<h2>Access to Meshery</h2>
46+
<img
47+
src={meshery}
48+
alt="Meshery"
49+
className="setup-imgs"
50+
loading="lazy"
51+
/>
4152
</div>
4253
<b>Recommended:</b>
4354
<p>
44-
Use Meshery Playground, a
45-
free-to-use, hosted Meshery deployment with live Kubernetes cluster. Click this
46-
card to open the playground.
55+
Use Meshery Playground, a free-to-use, hosted Meshery deployment
56+
with live Kubernetes cluster. Click this card to open the
57+
playground.
4758
</p>
4859
<b>Alternative:</b>
4960
<p>
50-
Install Meshery locally to
51-
see how easy it is to start managing cloud native infrastructure and complete
52-
the labs in this Learning Path.
61+
Install Meshery locally to see how easy it is to start managing
62+
cloud native infrastructure and complete the labs in this Learning
63+
Path.
5364
</p>
5465
</div>
5566
</a>
56-
<a href="https://meshery.io/#getting-started" id="Manage Meshery"
57-
target="_blank" rel="noreferrer"
67+
<a
68+
href="https://meshery.io/#getting-started"
69+
id="Manage Meshery"
70+
target="_blank"
71+
rel="noreferrer"
5872
>
5973
<div className="card">
6074
<div className="card-header">
6175
<h2>Or Run Meshery</h2>
62-
<img src={mesheryOperator} alt="Meshery Operator" className="setup-imgs" loading="lazy" />
76+
<img
77+
src={mesheryOperator}
78+
alt="Meshery Operator"
79+
className="setup-imgs"
80+
loading="lazy"
81+
/>
6382
</div>
64-
<p>Optionally, install Meshery locally to see how easy it is to start managing cloud native infrastructure and complete the labs in this Learning Path. Optionally, Meshery can be deployed on-premises with a single command to download, install, and run your own instance of Meshery in your environment. See all supported platforms to deploy your own Meshery Server.</p>
83+
<p>
84+
Optionally, install Meshery locally to see how easy it is to start
85+
managing cloud native infrastructure and complete the labs in this
86+
Learning Path. Optionally, Meshery can be deployed on-premises with
87+
a single command to download, install, and run your own instance of
88+
Meshery in your environment. See all supported platforms to deploy
89+
your own Meshery Server.
90+
</p>
6591
</div>
6692
</a>
6793
</div>

0 commit comments

Comments
 (0)