Skip to content

Commit 1278f67

Browse files
fixed responsive issue on integration pages
Signed-off-by: Priyadharshini0101 <[email protected]>
2 parents 7a52b72 + 20fcbe6 commit 1278f67

File tree

259 files changed

+2796
-1622
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

259 files changed

+2796
-1622
lines changed

Diff for: gatsby-node.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
446446
nodes {
447447
frontmatter {
448448
name
449+
permalink
449450
}
450451
fields {
451452
slug
@@ -864,7 +865,7 @@ exports.onCreateNode = ({ node, actions, getNode }) => {
864865
break;
865866
case "members":
866867
if (node.frontmatter.published)
867-
slug = `/community/members/${slugify(node.frontmatter.name)}`;
868+
slug = `/community/members/${node.frontmatter.permalink ?? slugify(node.frontmatter.name)}`;
868869
break;
869870
case "events":
870871
if (node.frontmatter.title)
@@ -1029,6 +1030,7 @@ exports.createSchemaCustomization = ({ actions }) => {
10291030
video: String,
10301031
community_manager: String,
10311032
docURL: String,
1033+
permalink: String,
10321034
}
10331035
`;
10341036
createTypes(typeDefs);
@@ -1064,4 +1066,4 @@ exports.onPostBuild = async ({ graphql, reporter }) => {
10641066
// Optionally, write the result to a file for easier inspection
10651067
const outputPath = path.resolve(__dirname, "public", "query-result.json");
10661068
fs.writeFileSync(outputPath, JSON.stringify(result, null, 2));
1067-
};
1069+
};

Diff for: src/assets/data/tutorials/index.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,16 @@ const data = [
115115
]
116116
},
117117
{
118-
date: "Oct. 7 2021",
119-
topic: "Working with Meshery Docs and Jekyll",
118+
date: "Apr. 10, 2025",
119+
topic: "Working with Meshery Docs",
120120
resources: {
121-
slides: "https://docs.google.com/presentation/d/1GhJH3YF5mBeYX7I7ItEd-EbUmk1cnn3BdK1X230kwII/edit?usp=sharing",
122-
recording: "https://www.youtube.com/watch?v=PBq7mIPnPhM"
121+
slides: "https://docs.google.com/presentation/d/1kQIzSa4f-pOH8cM4SwEdbFZGI_SXVyyhc9zUZPB7bsI/edit?usp=sharing",
122+
recording: "https://www.youtube.com/watch?v=7wRbbOSwrtI"
123123
},
124124
presenters: [
125125
{
126-
link: "/community/members/aadhitya-amarendiran",
127-
name: "Aadhitya Amarendiran",
126+
link: "/community/members/zihan-kuang",
127+
name: "Zihan Kuang"
128128
}
129129
]
130130
},

Diff for: src/collections/integrations/ace/icons/color/ace-color.svg

+9
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)