Skip to content

Commit 1b3fd76

Browse files
Merge branch 'master' into feat/lfx-2026-page-navigation
2 parents 07ef723 + 9ee64df commit 1b3fd76

16 files changed

Lines changed: 727 additions & 217 deletions

File tree

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@rjsf/mui": "^6.5.2",
5353
"@rjsf/utils": "^6.5.2",
5454
"@rjsf/validator-ajv8": "^6.5.2",
55-
"@sistent/sistent": "^0.21.11",
55+
"@sistent/sistent": "^0.21.14",
5656
"@svgr/webpack": "^8.0.1",
5757
"axios": "^1.13.2",
5858
"babel-plugin-styled-components": "^2.1.4",
@@ -117,7 +117,7 @@
117117
},
118118
"devDependencies": {
119119
"@babel/core": "^7.29.0",
120-
"@babel/eslint-parser": "^7.28.5",
120+
"@babel/eslint-parser": "^7.28.6",
121121
"@eslint/eslintrc": "^3.3.3",
122122
"@eslint/js": "^9.39.2",
123123
"cross-env": "^10.0.0",

src/collections/careers/Career.style.js

Lines changed: 61 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -2,70 +2,71 @@ import styled from "styled-components";
22
import List_Icon from "../../assets/images/careers/list-icon.svg";
33

44
export const CareerWrapper = styled.div`
5-
.body-sections {
6-
position: relative;
7-
p {
8-
margin-top: 0.25rem;
9-
}
10-
h3 {
11-
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
12-
}
5+
.body-sections {
6+
position: relative;
7+
p {
8+
margin-top: 0.25rem;
139
}
14-
.body-headers {
15-
margin: 1rem 0;
16-
width: fit-content;
17-
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
18-
:after {
19-
content: '';
20-
position: absolute;
21-
left: 0;
22-
margin-top: 2.75rem;
23-
width: 6rem;
24-
height: 0.2rem;
25-
border-bottom: 0.25rem solid ${props => props.theme.secondaryColor};
26-
border-radius: 0.2rem;
27-
}
10+
h3 {
11+
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
12+
}
13+
}
14+
.body-headers {
15+
margin: 1rem 0;
16+
width: fit-content;
17+
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
18+
:after {
19+
content: "";
20+
position: absolute;
21+
left: 0;
22+
margin-top: 2.75rem;
23+
width: 6rem;
24+
height: 0.2rem;
25+
border-bottom: 0.25rem solid ${(props) => props.theme.secondaryColor};
26+
border-radius: 0.2rem;
2827
}
29-
@media screen and (max-width: 992px) {
30-
.body-headers:after {
31-
margin-top: 2.25rem;
32-
}
28+
}
29+
@media screen and (max-width: 992px) {
30+
.body-headers:after {
31+
margin-top: 2.25rem;
3332
}
34-
.qualification-section {
35-
display: flex;
36-
flex-wrap: wrap;
37-
margin-top: 5rem;
38-
border-top: 1px solid rgba(0, 0, 0, 0.2);
39-
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
40-
.qualification-col {
41-
padding: 0 0.75rem 0 0;
42-
}
33+
}
34+
.qualification-section {
35+
display: flex;
36+
flex-wrap: wrap;
37+
margin-top: 5rem;
38+
border-top: 1px solid rgba(0, 0, 0, 0.2);
39+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
40+
.qualification-col {
41+
padding: 0 0.75rem 0 0;
4342
}
44-
li {
45-
list-style-type: none;
46-
margin: 2rem 0;
47-
line-height: 2rem;
48-
:before {
49-
content: url(${List_Icon});
50-
position: absolute;
51-
margin: 0rem 0rem 0rem -2.8rem;
52-
}
43+
}
44+
li {
45+
list-style-type: none;
46+
margin: 2rem 0;
47+
line-height: 2rem;
48+
:before {
49+
content: url(${List_Icon});
50+
position: absolute;
51+
margin: 0rem 0rem 0rem -2.8rem;
5352
}
54-
.job-details-footer {
55-
margin: 1rem 0;
56-
span {
57-
display: flex;
58-
line-height: 1.5rem;
59-
color: ${props => props.theme.whiteSevenFiveToBlackSevenFive};
60-
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
61-
62-
h5 {
63-
font-weight: 600;
64-
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
65-
}
66-
p {
67-
margin: 0 0 0 0.35rem;
68-
}
69-
}
53+
}
54+
.job-details-footer {
55+
margin: 1rem 0;
56+
span {
57+
display: flex;
58+
line-height: 1.5rem;
59+
color: ${(props) => props.theme.whiteSevenFiveToBlackSevenFive};
60+
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
61+
62+
h5 {
63+
font-weight: 600;
64+
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
65+
}
66+
p {
67+
margin: 0 0 0 0.35rem;
68+
}
7069
}
70+
}
71+
color: ${(props) => props.theme.text};
7172
`;
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Ragul Balajii
3+
position: Contributor
4+
image_path: ./ragul_balajii.jpg
5+
github: Sbragul26
6+
twitter: sbragull26
7+
linkedin: ragulbalajii
8+
layer5: 59391ed3-8cda-4339-8831-3b5d27782f76
9+
location: Tamil Nadu, India
10+
bio: "Ragul Balaji is a student at Coimbatore Institute of Technology with interests in software development, DevOps, cybersecurity, and Blockchain technologies. He enjoys building projects and learning new technologies through real-world projects and continuous exploration. \nHe is interested in open source contributions, cloud-native technologies, problem-solving, and enjoys understanding how modern systems work while focusing on building secure and reliable applications."
11+
status: Active
12+
published: true
13+
---
53.7 KB
Loading
-455 KB
Binary file not shown.

src/collections/members/anirudh-jain/index.mdx

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)