diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f118e97..1daa1d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,3 +55,5 @@ jobs: - name: Build with Next.js run: npm run build + env: + MONGODB_URI: ${{ secrets.MONGODB_URI }} diff --git a/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/emt104/page.jsx b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/emt104/page.jsx new file mode 100644 index 0000000..bd4d91c --- /dev/null +++ b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/emt104/page.jsx @@ -0,0 +1,93 @@ +import Questions from "@/components/Questions"; +import Answers from "@/components/Answers"; + +export default function EMT104() { + return ( + + + Question 1 + + + Identify specimen A and B stating the phyla and class they belong to + and their habitat. + + + + Give two examples each of the classes Polychaeta and Hirudinea under + the phylum Anelida. + + + + + + + Question 2 + + + Identify and classify any member of the phyla Platyhelminthes and + Nematoda to class level. + + + + Differentiate between the phyla Platyhelminthes and Nematoda. + + + + + + + Question 3 + + + Identify specimens C and D stating the phyla they belong and their + habitat. + + + + Draw any member of the phylum Echinodermata. + + + + + + + Question 4 + + Write short notes on the following: + + Diploblastic + Ectothermic organisms + Endothermic organisms + Amiotic + Heterotrophic organisms + + + + + + + Question 5 + + + List five general characteristics of the kingdom Animalia. + + + + List the classes under the phyla Porifera and Coelentrata. + + + + + + ); +} diff --git a/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/page.jsx b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/page.jsx new file mode 100644 index 0000000..5d70934 --- /dev/null +++ b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/page.jsx @@ -0,0 +1,14 @@ +import LinkList from "@/components/LinkList"; + +const courses = { + "": [ + { + name: "EMT 104 - Practical Biology II", + route: "2nd-semester/emt104", + }, + ], +}; + +export default function _2nd_semester() { + return ; +} diff --git a/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/page.jsx b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/page.jsx new file mode 100644 index 0000000..e9af727 --- /dev/null +++ b/src/app/past-questions-archive/wdu/emt/2022_2023/100-level/page.jsx @@ -0,0 +1,9 @@ +import LinkList from "@/components/LinkList"; + +const semesters = { + "": [{ name: "2nd Semester", route: "100-level/2nd-semester" }], +}; + +export default function _100_level() { + return ; +} diff --git a/src/app/past-questions-archive/wdu/emt/2022_2023/page.jsx b/src/app/past-questions-archive/wdu/emt/2022_2023/page.jsx new file mode 100644 index 0000000..5a0f76c --- /dev/null +++ b/src/app/past-questions-archive/wdu/emt/2022_2023/page.jsx @@ -0,0 +1,9 @@ +import LinkList from "@/components/LinkList"; + +const levels = { + "": [{ name: "100 Level", route: "2022_2023/100-level" }], +}; + +export default function _2022_2023() { + return ; +} diff --git a/src/app/past-questions-archive/wdu/emt/page.jsx b/src/app/past-questions-archive/wdu/emt/page.jsx new file mode 100644 index 0000000..c4738e7 --- /dev/null +++ b/src/app/past-questions-archive/wdu/emt/page.jsx @@ -0,0 +1,9 @@ +import LinkList from "@/components/LinkList"; + +const sessions = { + "": [{ name: "2022/2023", route: "emt/2022_2023" }], +}; + +export default function EMT() { + return ; +} diff --git a/src/app/past-questions-archive/wdu/page.jsx b/src/app/past-questions-archive/wdu/page.jsx index e316feb..00d2ca1 100644 --- a/src/app/past-questions-archive/wdu/page.jsx +++ b/src/app/past-questions-archive/wdu/page.jsx @@ -4,6 +4,7 @@ import LinkList from "@/components/LinkList"; const departments = { b: [{ name: "Basic And Industrial Chemistry", route: "wdu/basicinduschem" }], c: [{ name: "Computer Science", route: "wdu/compsci" }], + c: [{ name: "Environmental Management And Toxicology", route: "wdu/emt" }], g: [{ name: "General Studies", route: "wdu/gst" }], m: [ { name: "Management Sciences", route: "wdu/mgmsci" },