Skip to content

Commit a135a85

Browse files
committed
Fix broken links
1 parent fe5c233 commit a135a85

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

docusaurus.config.js

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,20 @@ const utmParams = `utm_campaign=devrel&utm_source=workshop&utm_medium=cta&utm_co
5151

5252
const footerLinks = [
5353
{
54-
label: "Try MongoDB Atlas",
54+
label: 'Try MongoDB Atlas',
5555
href: `https://www.mongodb.com/try?${utmParams}`,
56-
},
57-
{
58-
label: "Forums",
59-
href: `https://www.mongodb.com/community/forums/?${utmParams}`,
60-
},
61-
{
62-
label: "Developer Center",
63-
href: `https://www.mongodb.com/developer/?${utmParams}`,
64-
},
65-
{
66-
label: "MongoDB University",
67-
href: `https://learn.mongodb.com/?${utmParams}`,
68-
},
69-
{
56+
}, {
57+
label: 'Forums',
58+
href: `https://www.mongodb.com/community/forums?${utmParams}`,
59+
}, {
60+
label: 'Skill Badges',
61+
href: `https://learn.mongodb.com/skills?team=devrel&${utmParams}`,
62+
}, {
7063
href: `https://github.com/${organizationName}/${workshopName}`,
71-
label: "This lab in GitHub",
64+
label: "This lab in GitHub"
65+
}, {
66+
label: ${new Date().getFullYear()} MongoDB, Inc.`,
67+
href: "#",
7268
},
7369
];
7470

@@ -151,8 +147,7 @@ const config = {
151147
},
152148
footer: {
153149
style: "dark",
154-
links: footerLinks,
155-
copyright: ${new Date().getFullYear()} MongoDB, Inc.`,
150+
links: footerLinks
156151
},
157152
prism: {
158153
theme: lightCodeTheme,

i18n/es/docusaurus-plugin-content-docs/current/40-structure-site/1-docusaurus-config.mdx

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ const featureList = [
4747

4848
// UTM stuff
4949

50-
const utmAdvocateName = `diego.freniche`;
51-
const utmWorkshopName = 'docusaurus_workshop'
50+
const utmAdvocateName = 'sourabh.bagrecha';
51+
const utmWorkshopName = 'sql.query.api';
5252

5353
const utmParams = `utm_campaign=devrel&utm_source=workshop&utm_medium=cta&utm_content=${utmWorkshopName}&utm_term=${utmAdvocateName}`;
5454

@@ -61,15 +61,11 @@ const footerLinks = [
6161
},
6262
{
6363
label: 'Forums',
64-
href: `https://www.mongodb.com/community/forums/${utmParams}`,
64+
href: `https://www.mongodb.com/community/forums?${utmParams}`,
6565
},
6666
{
67-
label: 'Developer Center',
68-
href: `https://www.mongodb.com/developer/${utmParams}`,
69-
},
70-
{
71-
label: 'MongoDB University',
72-
href: `https://learn.mongodb.com/${utmParams}`,
67+
label: 'Skill Badges',
68+
href: `https://learn.mongodb.com/skills?team=devrel&${utmParams}`,
7369
},
7470
{
7571
label: `© ${new Date().getFullYear()} MongoDB, Inc.`,

0 commit comments

Comments
 (0)