Skip to content

Commit f137d47

Browse files
authored
Merge pull request #72 from NSS-Workshops/feedback
adding feedback links for each module
2 parents 6a15b7f + 4d325b5 commit f137d47

20 files changed

Lines changed: 170 additions & 9 deletions

File tree

src/sections/02-just-enough-math/04-glossary/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default {
2727
id: "just-enough-math-glossary",
2828
title: "Glossary",
2929
previousChapterId: "combinations-permutations",
30-
nextChapterId: null,
30+
nextChapterId: "module-feedback",
3131
content: `${formatGlossary(data)}`,
3232
exercises: [],
3333
quiz: null
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default {
2+
id: "just-enough-math-module-feedback",
3+
title: "Student Feedback",
4+
description: "Your feedback helps us understand what works, what doesn’t, and how we can make each module more effective for you.",
5+
previousChapterId: "just-enough-math-glossary",
6+
nextChapterId: null,
7+
content: `
8+
Please take a moment to share your feedback using this form:
9+
<a href='https://forms.gle/83zJTNUQuHmTNX9i8' target='_blank' rel='noopener noreferrer'>Module Feedback Form</a>.
10+
11+
First, select the course name **Data Structures and Algorithms**, then choose the module you just completed.
12+
13+
Your responses are **anonymous**, and your feedback helps us improve the content, pacing, and overall learning experience.
14+
We really appreciate your input.`,
15+
exercises: [],
16+
}

src/sections/03-algorithmic-thinking/09-checkpoint/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
title: "Checkpoint: Algorithmic Thinking",
77
description: "Test your understanding of Big O notation and algorithmic thinking concepts.",
88
previousChapterId: "algorithmic-thinking-glossary",
9-
nextChapterId: null,
9+
nextChapterId: "module-feedback",
1010
content: `Test your understanding of Big O notation and algorithmic thinking concepts.`,
1111
exercises: [],
1212
quiz: {component: () => <>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default {
2+
id: "algorithmic-thinking-module-feedback",
3+
title: "Student Feedback",
4+
description: "Your feedback helps us understand what works, what doesn’t, and how we can make each module more effective for you.",
5+
previousChapterId: "algorithmic-thinking-checkpoint",
6+
nextChapterId: null,
7+
content: `
8+
Please take a moment to share your feedback using this form:
9+
<a href='https://forms.gle/83zJTNUQuHmTNX9i8' target='_blank' rel='noopener noreferrer'>Module Feedback Form</a>.
10+
11+
First, select the course name **Data Structures and Algorithms**, then choose the module you just completed.
12+
13+
Your responses are **anonymous**, and your feedback helps us improve the content, pacing, and overall learning experience.
14+
We really appreciate your input.`,
15+
exercises: [],
16+
}

src/sections/04-arrays-and-two-pointers/11-glossary/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export default {
3737
title: 'Glossary: Arrays and Two Pointers',
3838
sectionId: 'arrays-and-two-pointers',
3939
previousChapterId: 'arrays-and-two-pointers-supplemental-materials',
40+
nextChapterId:"module-feedback",
4041
content: `This glossary contains important terms and concepts related to arrays and two pointers. Understanding these terms will help you communicate effectively about algorithms and data structures during interviews and technical discussions.
4142
4243
${formatGlossary(data)}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default {
2+
id: "arrays-and-two-pointers-module-feedback",
3+
title: "Student Feedback",
4+
description: "Your feedback helps us understand what works, what doesn’t, and how we can make each module more effective for you.",
5+
previousChapterId: "arrays-and-two-pointers-glossary",
6+
nextChapterId: null,
7+
content: `
8+
Please take a moment to share your feedback using this form:
9+
<a href='https://forms.gle/83zJTNUQuHmTNX9i8' target='_blank' rel='noopener noreferrer'>Module Feedback Form</a>.
10+
11+
First, select the course name **Data Structures and Algorithms**, then choose the module you just completed.
12+
13+
Your responses are **anonymous**, and your feedback helps us improve the content, pacing, and overall learning experience.
14+
We really appreciate your input.`,
15+
exercises: [],
16+
}

src/sections/05-2d-arrays/08-checkpoint/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
id: "2d-arrays-checkpoint",
66
title: 'Checkpoint: 2D Arrays',
77
previousChapterId: "2d-arrays-glossary",
8-
nextChapterId: null,
8+
nextChapterId: "module-feedback",
99
content: `Test your understanding of 2D Arrays and working with them.`,
1010
exercises: [],
1111
quiz: {component: () => <Checkpoint questions={questions}/>}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default {
2+
id: "2d-arrays-module-feedback",
3+
title: "Student Feedback",
4+
description: "Your feedback helps us understand what works, what doesn’t, and how we can make each module more effective for you.",
5+
previousChapterId: "2d-arrays-checkpoint",
6+
nextChapterId: null,
7+
content: `
8+
Please take a moment to share your feedback using this form:
9+
<a href='https://forms.gle/83zJTNUQuHmTNX9i8' target='_blank' rel='noopener noreferrer'>Module Feedback Form</a>.
10+
11+
First, select the course name **Data Structures and Algorithms**, then choose the module you just completed.
12+
13+
Your responses are **anonymous**, and your feedback helps us improve the content, pacing, and overall learning experience.
14+
We really appreciate your input.`,
15+
exercises: [],
16+
}

src/sections/06-linked-lists/09-checkpoint/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
id: "linked-checkpoint",
77
title: "Checkpoint: Linked Lists",
88
previousChapterId: "linked-glossary",
9-
nextChapterId: "linked-reverse",
9+
nextChapterId: "module-feedback",
1010
content: contentMd,
1111
exercises: [],
1212
quiz: {component: () => <Checkpoint questions={questions}/> }
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default {
2+
id: "linked-module-feedback",
3+
title: "Student Feedback",
4+
description: "Your feedback helps us understand what works, what doesn’t, and how we can make each module more effective for you.",
5+
previousChapterId: "linked-checkpoint",
6+
nextChapterId: null,
7+
content: `
8+
Please take a moment to share your feedback using this form:
9+
<a href='https://forms.gle/83zJTNUQuHmTNX9i8' target='_blank' rel='noopener noreferrer'>Module Feedback Form</a>.
10+
11+
First, select the course name **Data Structures and Algorithms**, then choose the module you just completed.
12+
13+
Your responses are **anonymous**, and your feedback helps us improve the content, pacing, and overall learning experience.
14+
We really appreciate your input.`,
15+
exercises: [],
16+
}

0 commit comments

Comments
 (0)