180 lines
5.7 KiB
JavaScript
180 lines
5.7 KiB
JavaScript
|
|
const knowledgeQuestsAllContent = (req, res) => {
|
|
// res.send(req.query.doa); //get
|
|
// res.send(req.body.doa); //post
|
|
let knowledgeData = [
|
|
{
|
|
id: "1",
|
|
status: "1",
|
|
title: "Assessment on Special Education",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "Subjective Question",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "2",
|
|
status: "1",
|
|
title: "Quiz on Children Psychology",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "MCQ",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "3",
|
|
status: "1",
|
|
title: "Quiz on Montessori Methods",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "MCQ",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "4",
|
|
status: "1",
|
|
title: "Assessment on Special Education",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "Subjective Question",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "5",
|
|
status: "1",
|
|
title: "Quiz on Children Psychology",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "MCQ",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "6",
|
|
status: "1",
|
|
title: "Quiz on Montessori Methods",
|
|
challenge: "Challenge yourself & climb the leaderboard.",
|
|
question: "MCQ",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "7",
|
|
status: "1",
|
|
title: "Workshop on Child Development",
|
|
challenge: "Expand your knowledge & earn badges.",
|
|
question: "Interactive Session",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "8",
|
|
status: "1",
|
|
title: "Webinar on Educational Psychology",
|
|
challenge: "Join & enhance your skills.",
|
|
question: "Discussion",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "9",
|
|
status: "1",
|
|
title: "Seminar on Inclusive Education",
|
|
challenge: "Participate & gain insights.",
|
|
question: "Lecture",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "10",
|
|
status: "1",
|
|
title: "Course on Early Childhood Education",
|
|
challenge: "Complete the course & get certified.",
|
|
question: "Multiple Modules",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "11",
|
|
status: "1",
|
|
title: "Training on Classroom Management",
|
|
challenge: "Improve your teaching strategies.",
|
|
question: "Practical Tasks",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "12",
|
|
status: "1",
|
|
title: "Lecture on Cognitive Development",
|
|
challenge: "Expand your understanding & get certified.",
|
|
question: "Q&A Session",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "13",
|
|
status: "1",
|
|
title: "Workshop on Behavioral Issues",
|
|
challenge: "Join & learn from experts.",
|
|
question: "Interactive Session",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "14",
|
|
status: "1",
|
|
title: "Seminar on Learning Disabilities",
|
|
challenge: "Participate & enhance your knowledge.",
|
|
question: "Lecture",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "15",
|
|
status: "1",
|
|
title: "Webinar on Child Psychology",
|
|
challenge: "Join & expand your skills.",
|
|
question: "Discussion",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "16",
|
|
status: "1",
|
|
title: "Course on Special Education Needs",
|
|
challenge: "Complete the course & get certified.",
|
|
question: "Multiple Modules",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "17",
|
|
status: "1",
|
|
title: "Training on Autism Spectrum Disorder",
|
|
challenge: "Improve your teaching strategies.",
|
|
question: "Practical Tasks",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "18",
|
|
status: "1",
|
|
title: "Lecture on Emotional Development",
|
|
challenge: "Expand your understanding & get certified.",
|
|
question: "Q&A Session",
|
|
img: "/assets/knowledge3.jpg"
|
|
},
|
|
{
|
|
id: "19",
|
|
status: "1",
|
|
title: "Workshop on ADHD",
|
|
challenge: "Join & learn from experts.",
|
|
question: "Interactive Session",
|
|
img: "/assets/knowledge1.jpg"
|
|
},
|
|
{
|
|
id: "20",
|
|
status: "1",
|
|
title: "Seminar on Speech and Language Disorders",
|
|
challenge: "Participate & enhance your knowledge.",
|
|
question: "Lecture",
|
|
img: "/assets/knowledge2.jpg"
|
|
},
|
|
{
|
|
id: "21",
|
|
status: "1",
|
|
title: "Webinar on Child Nutrition",
|
|
challenge: "Join & expand your skills.",
|
|
question: "Discussion",
|
|
img: "/assets/knowledge3.jpg"
|
|
}
|
|
];
|
|
res.json(knowledgeData);
|
|
};
|
|
|
|
module.exports = knowledgeQuestsAllContent;
|
|
|
|
// knowledgeQuestsAllContent
|