diff --git a/src/components/Course/Chapter.tsx b/src/components/Course/Chapter.tsx index cfad8144c..cf946e930 100644 --- a/src/components/Course/Chapter.tsx +++ b/src/components/Course/Chapter.tsx @@ -82,33 +82,35 @@ export function Chapter(props: ChapterProps) {
{isActive && ( -
+
{lessons.length > 0 && ( <> -
+

{title}

diff --git a/src/components/Course/CourseView.tsx b/src/components/Course/CourseView.tsx index 66f61a7b7..3951ba304 100644 --- a/src/components/Course/CourseView.tsx +++ b/src/components/Course/CourseView.tsx @@ -49,6 +49,9 @@ export function CourseView(props: CourseViewProps) {
+

+ {lesson.frontmatter.title} +

{children}
diff --git a/src/components/Course/QuizView.tsx b/src/components/Course/QuizView.tsx index efc18e44b..e9f5fec33 100644 --- a/src/components/Course/QuizView.tsx +++ b/src/components/Course/QuizView.tsx @@ -37,11 +37,11 @@ export function QuizView(props: QuizViewProps) {
-

+

{lesson.frontmatter.title}

-
+
{questions.map((question) => { return ( -
+
); } diff --git a/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md b/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md index 864135d70..38460d55b 100644 --- a/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md +++ b/src/data/courses/sql/chapters/introduction/lessons/intro-to-sql.md @@ -5,8 +5,6 @@ order: 100 type: lesson --- -## What is SQL - The SQL language is widely used today across web frameworks and database applications. Knowing SQL gives you the freedom to explore your data, and the power to make better decisions. By learning SQL, you will also learn concepts that apply to nearly every data storage system. The statements covered in this course use SQLite Relational Database Management System (RDBMS). You can also access a glossary of all the SQL commands taught in this course.