Skip to content

Commit 90c3ae9

Browse files
authored
Merge branch 'master' into feat/add-academy-repos
2 parents 2f2fa54 + 8052090 commit 90c3ae9

18 files changed

Lines changed: 701 additions & 116 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
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
@@ -42,7 +42,7 @@
4242
"@mui/icons-material": "^6.4.6",
4343
"@mui/material": "^5.15.11",
4444
"@react-icons/all-files": "^4.1.0",
45-
"@sistent/sistent": "^0.15.3",
45+
"@sistent/sistent": "^0.15.4",
4646
"@svgr/webpack": "^8.0.1",
4747
"@types/mui-datatables": "^4.3.12",
4848
"ajv": "^8.17.1",

src/collections/blog/2023/05-24-meet-the-meshmate-yash-sharma/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Meet the MeshMate: Yash Sharma"
33
subtitle: "An interview series with Layer5 MeshMates"
44
date: 2023-05-29 10:30:05 -0530
5-
author: Vivek Vishal
5+
author: Layer5 Team
66
thumbnail: "./yash-sharma-layer5-meshmate.png"
77
darkthumbnail: "./yash-sharma-layer5-meshmate.png"
88
category: Community

src/collections/blog/2024/09-08-meet-the-maintainer-hussaina-begum/post.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Meet the Maintainer: Hussaina Begum"
33
subtitle: "An interview series with open source maintainers"
44
date: 2024-09-08 10:30:05 -0530
5-
author: Vivek Vishal
5+
author: Layer5 Team
66
thumbnail: ./hussaina-begum-meshery-maintainer.png
77
darkthumbnail: ./hussaina-begum-meshery-maintainer.png
88
description: Meet the Maintainer series with open source maintainer, Hussaina Begum

src/collections/blog/2024/10-22-meet-the-maintainer-aadhitya-amarendiran/post.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Meet the Maintainer: Aadhitya Amarendiran"
33
subtitle: "An interview series with open source maintainers"
44
date: 2024-09-08 10:30:05 -0530
5-
author: Vivek Vishal
5+
author: Layer5 Team
66
thumbnail: ./aadhitya-amarendiran-layer5-maintainer.png
77
darkthumbnail: ./aadhitya-amarendiran-layer5-maintainer.png
88
description: Meet the Maintainer series with open source maintainer, Aadhitya Amarendiran

src/collections/blog/2025/05-28-meet-the-maintainer-ian-whitney/post.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Meet the Maintainer: Ian Whitney"
33
subtitle: "An interview series with open source maintainers"
44
date: 2025-05-29 10:30:05 -0530
5-
author: Vivek Vishal
5+
author: Layer5 Team
66
thumbnail: ./ian-whitney-meshery-maintainer.png
77
darkthumbnail: ./ian-whitney-meshery-maintainer.png
88
description: Meet the Maintainer series with open source maintainer, Ian Whitney

src/collections/resources/articles/layer5-academy-vs-moocit/index.mdx

Whitespace-only changes.

src/components/Animated-steps-list/Steps-list/StepsList.style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const StepsListWrapper = styled.div`
88
99
& > li {
1010
&:not(:last-of-type) {
11-
margin-bottom: 600px;
11+
margin-bottom: 150px;
1212
1313
@media (max-width: 850px) {
1414
margin-bottom: 88px;

src/components/Animated-steps-list/hero/hero.style.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export const HeroWrapper = styled.div`
77
font-weight: 600;
88
}
99
10-
padding: 12rem 0 20rem 0;
10+
padding: 4rem 0 4rem 0;
1111
1212
@media (max-width: 800px) {
13-
padding: 2rem 0 10rem 0;
13+
padding: 1rem 0 2rem 0;
1414
}
1515
1616
.content {

src/components/Animated-steps-list/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import FramedTerminal from "../Animated-terminal/Framed-terminal";
77
import { AnimatedStepsListWrapper } from "./AnimatedStepsList.style";
88

99
// The breakpoints where the next step of each animation triggers
10-
const breakpoints = [0, 350, 1400, 2450, 2680];
10+
const breakpoints = [0, 300, 800, 1300, 1700];
1111

1212
// The number of pixels before the next breakpoint that the animation should complete
13-
const animationBottomPadding = [0, 620, 575, -50];
13+
const animationBottomPadding = [0, 180, 180, 50];
1414

1515
const calculateCurrentFrame = (terminalSteps, currentIndex, scrollPosition) => {
1616
const percentage = Math.min(
@@ -37,7 +37,7 @@ const AnimatedStepsList = ({ terminalHeroState, steps }) => {
3737
const scrollPosition = useScrollPosition();
3838
const [indicatorIndex, setIndicatorIndex] = useState(0);
3939
const activeTerminalStateIndex =
40-
scrollPosition <= 350 ? 0 : indicatorIndex + 1;
40+
scrollPosition <= 300 ? 0 : indicatorIndex + 1;
4141
const terminalSteps = [terminalHeroState].concat(
4242
steps.map((step) => step.terminal)
4343
);

0 commit comments

Comments
 (0)