From 67a89e362abbe408695c196ff3ef2adc3d4176fc Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Tue, 29 Sep 2020 10:33:53 +0300 Subject: [PATCH] Course structure in json --- Courses/index.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Courses/index.js diff --git a/Courses/index.js b/Courses/index.js new file mode 100644 index 0000000..1b7bf14 --- /dev/null +++ b/Courses/index.js @@ -0,0 +1,38 @@ +({ + intro: { + title: 'Introduction to software engineering', + }, + sef1: { + title: 'Software engineering fundamentals: part 1', + }, + sef2: { + title: 'Software engineering fundamentals: part 2', + }, + sef3: { + title: 'Software engineering fundamentals: part 3', + }, + pps1: { + title: 'Asynchronous programming', + }, + pps2: { + title: 'Parallel programming', + }, + pps3: { + title: 'Distributed systems', + }, + nts1: { + title: 'Node.js technology stack: part1', + }, + nts2: { + title: 'Node.js technology stack: part2', + }, + nts3: { + title: 'Node.js technology stack: part3', + }, + isa1: { + title: 'Information system architecture: part1', + }, + isa2: { + title: 'Information system architecture: part2', + }, +});