Skip to content

Commit 2bf36e7

Browse files
authored
Merge branch 'master' into practical
2 parents b46bad4 + fa76589 commit 2bf36e7

10 files changed

Lines changed: 1014 additions & 234 deletions

File tree

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,23 @@ import hacktoberfestTheme from "./hacktoberfest-meshery-theme.webp";
2424

2525
<p>As in years past, Layer5 has a number of different projects and a variety of technologies for participants to choose from. For Hacktoberfest 2025, our theme will center on Designing with Meshery. <Link to="/cloud-native-management/meshery">Meshery</Link> is an extensible, self-service platform for collaborative infrastructure management. Be sure to understand the <Link to="/blog/meshery/comparing-meshery-models-and-meshery-designs">difference between Meshery Models and Meshery Designs</Link>. The Meshery project is looking for contributors to extend these models to support new cloud native infrastructure and their features.</p>
2626

27-
<img src={hacktoberfestOpenArms} style="width: 750px; margin-right: 20px; float: left;"/>
28-
2927
<p>
3028
Prepare for Hacktoberfest and ready yourself for contributing to CNCF projects the easy way with Layer5 <Link to="/community/meshmates">MeshMates</Link> and Maintainers. Spend an hour with seasoned, open source maintainers and hack your way through. To get a head start, see our <Link to="/community/newcomers">Newcomers Resources</Link>. Get familiar with the Layer5 community through our <Link to="/community/handbook">Community Handbook</Link>.
3129
</p>
3230

33-
<div style={{ display: 'flex', alignItems: 'flex-start', marginBottom: '-200px' }}>
31+
<div style={{ display: 'flex', alignItems: 'flex-start', marginBottom: '-230px' }}>
3432
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'flex-start' , marginBottom: '-20px' }}>
3533
<h3 style={{ margin: '0', marginBottom: '10px', whiteSpace: 'nowrap' }}>Earn a Badge</h3>
3634
<p style={{ margin: '0', width: '900px' }}>
3735
Earn a Hacktoberfest Contributor badge by contributing to Layer5 projects during this Hacktoberfest.
3836
</p>
3937
</div>
40-
<img src={hacktoberfestBadge} style={{ width: '250px', flexShrink: '0', marginLeft: '80px' , marginTop: '-50px' }} />
38+
<img src={hacktoberfestBadge} style={{ width: '250px', flexShrink: '0', marginLeft: '-60px' ,marginRight: '100px', marginTop: '-50px' }} />
4139
</div>
4240

43-
<h3 style={{marginBottom: '10px'}}>Event Details</h3>
41+
<img src={hacktoberfestOpenArms} style="display:block; justify-content:center; width: 750px; margin-right: auto;"/>
4442

43+
<h3 style={{marginBottom: '10px'}}>Event Details</h3>
4544

4645
<ul>
4746
<li><strong>DATE: </strong>October 3rd, 2025</li>
@@ -55,5 +54,3 @@ Prepare for Hacktoberfest and ready yourself for contributing to CNCF projects t
5554
<li><Link to="/blog/open-source/ways-to-contribute-at-layer5">Code and Non-Code Contributing at Layer5</Link></li>
5655
<li><a href="https://github.com/issues?q=is%3Aopen%20is%3Aissue%20archived%3Afalse%20(org%3Alayer5io%20OR%20org%3Ameshery%20OR%20org%3Aservice-mesh-performance%20OR%20org%3Aservice-mesh-patterns%20OR%20org%3Alayer5labs%20OR%20org%3Ameshery-extensions)%20label%3Ahacktoberfest">Issues for Hacktoberfest</a></li>
5756
</ul>
58-
59-
<img src={hacktoberfestTheme} style="width: fit-content;"/>

src/components/CookieConsent/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
Stack,
99
} from "@mui/material";
1010

11-
11+
import {Link} from "gatsby";
1212
import Button from "../../reusecore/Button";
1313
import styled from "styled-components";
1414

@@ -54,10 +54,11 @@ const CookieConsent = () => {
5454
<Typography variant="body2" >
5555
We use cookies to enhance your browsing experience. By clicking
5656
"Accept", you consent to our use of cookies. Read more in our{" "}
57-
<a href="/company/legal/privacy" target="_blank" rel="noopener noreferrer">
57+
<Link to="/company/legal/privacy" target="_self" rel="noopener noreferrer">
5858
Privacy Policy
59-
</a>
60-
.
59+
</Link> or visit our <Link to="/company/legal" target="_self" rel="noopener noreferrer">
60+
Trust Center
61+
</Link>.
6162
</Typography>
6263

6364
<Box display="flex" justifyContent="flex-end" gap={1}>

src/sections/Company/Legal/cookie-notice/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2828
const StyledTableRow = styled(TableRow)(({ theme }) => ({
2929
"&:nth-child(odd)": {
3030
backgroundColor: theme.palette.background.default,
31+
borderRadius: "0px",
3132
},
3233
"&:nth-child(even)": {
3334
backgroundColor: theme.palette.background.secondary,
35+
borderRadius: "0px",
3436
},
3537
}));
3638

@@ -39,7 +41,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
3941
fontSize: "0.975rem",
4042
padding: "0.75rem",
4143
borderBottom: `1px solid ${theme.palette.divider}`,
42-
borderRadius: "4px",
44+
borderRadius: "0px",
4345
}));
4446

4547
const StyledHeaderCell = styled(StyledTableCell)(() => ({

src/sections/Company/Legal/privacy/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2626
const StyledTableRow = styled(TableRow)(({ theme }) => ({
2727
"&:nth-child(odd)": {
2828
backgroundColor: theme.palette.background.default,
29+
borderRadius: 0,
2930
},
3031
"&:nth-child(even)": {
3132
backgroundColor: theme.palette.background.secondary,
33+
borderRadius: 0,
3234
},
3335
}));
3436

@@ -37,7 +39,8 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
3739
fontSize: "0.975rem",
3840
padding: "0.75rem",
3941
borderBottom: `1px solid ${theme.palette.divider}`,
40-
borderRadius: "4px",
42+
borderRadius: 0,
43+
4144
}));
4245

4346
const StyledHeaderCell = styled(StyledTableCell)(() => ({

src/sections/Company/Legal/sub-processors/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2929
const StyledTableRow = styled(TableRow)(({ theme }) => ({
3030
"&:nth-child(odd)": {
3131
backgroundColor: theme.palette.background.default,
32+
borderRadius: "0px",
3233
},
3334
"&:nth-child(even)": {
3435
backgroundColor: theme.palette.background.secondary,
36+
borderRadius: "0px",
3537
},
3638
}));
3739

@@ -40,7 +42,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
4042
fontSize: "0.975rem",
4143
padding: "0.75rem",
4244
borderBottom: `1px solid ${theme.palette.divider}`,
43-
borderRadius: "4px",
45+
borderRadius: "0px",
4446
}));
4547

4648
const StyledHeaderCell = styled(StyledTableCell)(() => ({

0 commit comments

Comments
 (0)