Skip to content

Commit 2f6d4f9

Browse files
authored
Merge branch 'master' into inr-fix
2 parents d50ce1d + 65d94d2 commit 2f6d4f9

9 files changed

Lines changed: 23 additions & 19 deletions

File tree

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"gatsby-plugin-image": "^3.11.0",
6565
"gatsby-plugin-loadable-components-ssr": "^4.3.2",
6666
"gatsby-plugin-manifest": "^5.15.0",
67-
"gatsby-plugin-mdx": "^5.0.0",
67+
"gatsby-plugin-mdx": "^5.15.0",
6868
"gatsby-plugin-meta-redirect": "github:layer5labs/gatsby-plugin-meta-redirect",
6969
"gatsby-plugin-netlify": "^5.1.1",
7070
"gatsby-plugin-preload-fonts": "^4.11.0",
69 KB
Loading
80.8 KB
Loading
144 KB
Loading

src/collections/events/2025/hacktoberfest-2025/index.mdx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
---
22
title: "Hacktoberfest Prep 2025: Design with Meshery"
33
description: "Prepare for Hacktoberfest with Layer5 MeshMates and Maintainers. Join seasoned open source maintainers, hack through easy issues, and grow your skills. Discover Newcomers resources and explore the Layer5 Community Handbook."
4-
thumbnail:
5-
darkthumbnail:
6-
date: 2025-00-03
7-
eurl:
4+
thumbnail: ./hacktoberfest-layer5-first-pr.webp
5+
darkthumbnail: ./hacktoberfest-layer5-first-pr.webp
6+
date: 2025-10-03
7+
#eurl: https://hacktoberfest.com
88
type: Event
9-
speakers: []
10-
published: false
9+
speakers: [Ritesh Karankal, Naman Verma, Aabid Sofi]
10+
published: true
1111
upcoming: true
1212
register: true
1313
---
1414

1515
import { Link } from "gatsby" ;
16-
// import preptemberslides from "./hacktoberfest-prep-2024-extending-meshery-models.pdf"
1716
import hacktoberfestBadge from "./layer5-hacktoberfest11-badge-large.png";
17+
import hacktoberfestFirstPR from "./hacktoberfest-layer5-first-pr.webp";
18+
import hacktoberfestOpenArms from "./hacktoberfest-layer5-open-arms.webp";
19+
20+
<img src={hacktoberfestOpenArms} style="width: 250px; margin-right: 20px; float: right;"/>
1821

1922
<p>
2023
<Link to="/programs/hacktoberfest">Hacktoberfest</Link> is just around the corner. You'd be surprised to know how small changes can make a big impact on a project. The more a project scales, the easier it is for small errors to live within it. You can make a real difference by fixing these relatively easier issues and continue to grow from there.
@@ -32,7 +35,7 @@ Prepare for Hacktoberfest and ready yourself for contributing to CNCF projects t
3235

3336
<ul>
3437
<li><strong>DATE:</strong>October 3, 2025</li>
35-
<li><strong>TIME:</strong>9AM CT | 3PM WAT | 7:30PM IST</li>
38+
<li><strong>TIME:</strong>9AM CT | 2PM CEST |3PM WAT | 7:30PM IST</li>
3639
{/* <li><strong>LIVESTREAM:</strong> <a href="https://www.youtube.com/watch?v=iKe52yMWWK4">YouTube</a></li> */}
3740
</ul>
3841

src/components/Pricing/PricingAddons/index.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
401401
sm: "0.9rem",
402402
}
403403
}}>
404-
{formatPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser)}<br />{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
404+
{Number(isYearly ? option.yearlyPerUser : option.monthlyPerUser).toFixed(2)}<br />{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
405405
</Box>
406406
</Box>
407407
),
@@ -520,16 +520,17 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
520520
{subAddOn.name} × {subAddOn.pricing?.[quantityIndex]?.learners || 0}/{isYearly ? "yearly" : "monthly"}
521521
</Typography>
522522
<Typography variant="body1" sx={typographyStyles.pricingItemRight} fontWeight="500">
523-
{formatPrice(
523+
{(
524524
(() => {
525525
const subAddOnPricing = subAddOn.pricing && subAddOn.pricing[quantityIndex];
526526
if (subAddOnPricing) {
527527
const subAddOnPerUserCost = isYearly ? subAddOnPricing.yearlyPerUser : subAddOnPricing.monthlyPerUser;
528-
return subAddOnPerUserCost * subAddOnPricing.learners;
528+
const totalCost = subAddOnPerUserCost * subAddOnPricing.learners;
529+
return formatPrice(totalCost);
529530
}
530531
return 0;
531532
})()
532-
)}
533+
)}/{isYearly ? "yearly" : "monthly"}
533534
</Typography>
534535
</Box>
535536
)
@@ -549,13 +550,13 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
549550
/>
550551
</Box>
551552
<Typography variant="body1" fontWeight="500" sx={typographyStyles.pricingItemRight}>
552-
{formatPrice((isYearly ? enterprisePlan.yearlyprice : enterprisePlan.monthlyprice) * (enterpriseUsers > 0 ? enterpriseUsers : 1))}/{isYearly ? "monthly" : "yearly"}
553+
{formatPrice((isYearly ? enterprisePlan.yearlyprice : enterprisePlan.monthlyprice) * (enterpriseUsers > 0 ? enterpriseUsers : 1))}/{isYearly ? "yearly" : "monthly"}
553554
</Typography>
554555
</Box>
555556

556557
<Box sx={boxStyles.flexBetween}>
557558
<Typography variant="body1" gutterBottom sx={typographyStyles.subheading}>
558-
{isYearly ? "Yearly" : "Monthly"} Cost
559+
Total Cost
559560
</Typography>
560561
<Typography variant="h4" fontWeight="bold" sx={typographyStyles.qanelasFont}>
561562
{formatPrice(totalPrice)}

src/sections/Kanvas/Kanvas-design/kanvas-design-banner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ const KanvasDesignBanner = () => {
166166
<Button $secondary title="Experience context-aware design" $url="https://kanvas.new" external={ true } />
167167
<h5>Upload your Helm Chart or Kubernetes manifest to have your infra diagrammed</h5>
168168
</div>
169-
<img className="dots-upper" src={BackgroundDotsPattern} />
170-
<img className="dots-lower" src={BackgroundDotsPattern} />
169+
<img className="dots-upper" src={BackgroundDotsPattern} alt="" aria-hidden="true" />
170+
<img className="dots-lower" src={BackgroundDotsPattern} alt="" aria-hidden="true" />
171171
</DesignBannerWrapper>
172172

173173
);

src/sections/Kanvas/Kanvas-design/kanvas-design-integrations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const KanvasIntegrationsSection = () => {
131131
</h1>
132132
</div>
133133
<div>
134-
<img className="underline-img" src={UnderlineImg} />
134+
<img className="underline-img" src={UnderlineImg} alt="" />
135135
</div>
136136
<div>
137137
<h4>

0 commit comments

Comments
 (0)