Skip to content

Commit befe088

Browse files
authored
Merge pull request #7100 from Namanv0509/master
update to kanvas lab url
2 parents 6e58dae + 9cb4be1 commit befe088

11 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/assets/discuss/html/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h5 class="footer-h5"><a href="https://layer5.io/resources">Resource Library</a>
4949
<h5 class="footer-h5"><a href="https://layer5.io/learn/service-mesh-books">Cloud Native Books</a></h5>
5050
<h5 class="footer-h5"><a href="https://layer5.io/learn/workshops">Cloud Native Workshops</a></h5>
5151
<h5 class="footer-h5"><a href="https://layer5.io/service-mesh-landscape#service-mesh-comaprison-matrix">Service Mesh Comparison</a></h5>
52-
<h5 class="footer-h5"><a href="https://layer5.io/learn/service-mesh-labs">Cloud Native Interactive Labs</a></h5>
52+
<h5 class="footer-h5"><a href="https://layer5.io/learn/kanvas-labs">Cloud Native Interactive Labs</a></h5>
5353
</div>
5454
<div class="even-col footer-sections footer-community">
5555
<h3 class="section-title"><a href="https://layer5.io/community">COMMUNITY</a></h3>

src/sections/Community/Handbook/learn5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const LearnLayer = () => {
3535
<p>As a community, we have put together an excellent set of learning materials and training resources to guide you through learning about cloud native infrastucture.</p>
3636
<p>You can review the <Link to="/learn">complete list of learning resources</Link> or jump straight to the type of training you prefer:</p>
3737
<ul>
38-
<li>Interactive <Link to="/learn/service-mesh-labs">cloud native labs</Link></li>
38+
<li>Interactive <Link to="/learn/kanvas-labs">cloud native labs</Link></li>
3939
<li>Free <Link to="/learn/service-mesh-books">cloud native books</Link></li>
4040
<li>Self-paced <Link to="/learn/workshops">cloud native workshops</Link></li>
4141
<li>Recorded training and talks on the <a href="https://www.youtube.com/c/Layer5io?sub_confirmation=1/playlists">Layer5 YouTube Channel</a></li>

src/sections/Community/Handbook/repo-data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export const repo_data = [
230230
maintainers_name: ["Vacant"],
231231
link: ["#"],
232232
description:
233-
"A variety of interactive labs spanning different cloud native infrastructure. See https://layer5.io/learn/service-mesh-labs.",
233+
"A variety of interactive labs spanning different cloud native infrastructure. See https://layer5.io/learn/kanvas-labs.",
234234
repository: "https://github.com/layer5io/service-mesh-labs",
235235
},
236236
{

src/sections/General/Footer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ const Footer = ({ location }) => {
161161
{/* <li>
162162
<Link
163163
className="category-link"
164-
to="/learn/service-mesh-labs"
164+
to="/learn/kanvas-labs"
165165
>
166166
Cloud Native Interactive Labs
167167
</Link>

src/sections/General/Navigation/utility/menu-items.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ const Data = {
150150
// },
151151
// {
152152
// name: "Interactive Labs",
153-
// path: "/learn/service-mesh-labs",
153+
// path: "/learn/kanvas-labs",
154154
// sepLine: true
155155
// },
156156
// ],
@@ -297,7 +297,7 @@ const Data = {
297297
},
298298
{
299299
name: "Interactive Labs",
300-
path: "/learn/service-mesh-labs",
300+
path: "/learn/kanvas-labs",
301301
},
302302
],
303303
actionItems: [

src/sections/Learn/Lab-single/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const LabSinglePage = ({ frontmatter, body }) => {
2323
return (
2424
<LabSinglePageWrapper>
2525
<div className="backBtn">
26-
<Link to="/learn/service-mesh-labs">
26+
<Link to="/learn/kanvas-labs">
2727
<IoIosArrowDropleftCircle />
2828
<h4> All Labs</h4>
2929
</Link>

src/sections/Learn/Learn-Service-Mesh-CTA/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const LearnServiceMeshCTA = () => {
4848
<Row className="section-wrapper" $Vcenter>
4949
<Col className="content" $sm={12} $md={6} $lg={6}>
5050
<h2>Learn Meshery with interactive labs</h2>
51-
<Button $secondary title="Let's Learn" $url="/learn/service-mesh-labs" />
51+
<Button $secondary title="Let's Learn" $url="/learn/kanvas-labs" />
5252
</Col>
5353
<Col className="image" $sm={12} $md={6} $lg={6}>
5454
<StaticImage src={ServiceMeshImage} alt="Learn how to configure Kubernetes" objectFit="contain" />

src/sections/Learn/LearnPage-Sections/learn.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ const LearnSection = () => {
189189
flexWrap: "wrap"
190190
}} $Hcenter className="learn-buttons-section labs">
191191
<Col $xs={12} $lg={6}>
192-
<Link to="/learn/service-mesh-labs" state={{ selectedIndex: 0 }}>
192+
<Link to="/learn/kanvas-labs" state={{ selectedIndex: 0 }}>
193193
<Button $secondary title="Getting started with any service mesh"/>
194194
</Link>
195195
</Col>
196196
<Col $xs={12} $lg={6}>
197-
<Link to="/learn/service-mesh-labs" state={{ selectedIndex: 1 }}>
197+
<Link to="/learn/kanvas-labs" state={{ selectedIndex: 1 }}>
198198
<Button $secondary title="Managing the performance of your microservices"/>
199199
</Link>
200200
</Col>
@@ -224,7 +224,7 @@ const LearnSection = () => {
224224
</div>
225225
</div>
226226
<div className="learn-buttons-section">
227-
<Button $primary title="Checkout all the labs" $url="/learn/service-mesh-labs" />
227+
<Button $primary title="Checkout all the labs" $url="/learn/kanvas-labs" />
228228
</div>
229229
</LearnSectionWrapper>
230230
);

src/sections/unsubscribe/unsubscribe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const UnsuscribeSection = () => {
99
<div className="parentcard">
1010
<h2>Unsubscribe</h2>
1111
<h4>Say it ain't so.</h4>
12-
<h5>While you ponder whether to <Link className="highlight" to="/subscribe">unsubscribe</Link>, have an <Link to="/learn/service-mesh-labs">interactive lab</Link> on us.</h5>
12+
<h5>While you ponder whether to <Link className="highlight" to="/subscribe">unsubscribe</Link>, have an <Link to="/learn/kanvas-labs">interactive lab</Link> on us.</h5>
1313
</div>
1414
<KanvasCTA />
1515
</UnsuscribeWrapper>

src/sections/unsubscribed/unsubscribed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const UnsuscribedSection = () => {
99
<div className="parentcard">
1010
<h2>Unsubscription Successful</h2>
1111
<h4>Say it ain't so.</h4>
12-
<h5>While you ponder whether to <Link className="highlight" to="/subscribe">resubscribe</Link>, have an <Link to="/learn/service-mesh-labs">interactive lab</Link> on us.</h5>
12+
<h5>While you ponder whether to <Link className="highlight" to="/subscribe">resubscribe</Link>, have an <Link to="/learn/kanvas-labs">interactive lab</Link> on us.</h5>
1313
</div>
1414
<KanvasCTA />
1515
</UnsuscribedWrapper>

0 commit comments

Comments
 (0)