diff --git a/README.md b/README.md index 68e8241..ea48dc5 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [ TODO LIST ] +- [ ] Blog - [ ] Quizes System - [ ] Fixing janky ts-types - [ ] Main-Page ( Better design ) diff --git a/components/CourseCard.tsx b/components/CourseCard.tsx index 00913a2..2f9978c 100644 --- a/components/CourseCard.tsx +++ b/components/CourseCard.tsx @@ -1,5 +1,7 @@ import { Course } from "../utils/types.ts"; +import IconCircle from "https://deno.land/x/tabler_icons_tsx@0.0.5/tsx/circle.tsx"; + export default function CourseCard(props: { course: Course }) { const { course } = props; return ( @@ -8,8 +10,8 @@ export default function CourseCard(props: { course: Course }) { style={{ order: course.order }} > -

- {course.title} +

+

diff --git a/components/Nav.tsx b/components/Nav.tsx index 7152c89..df55402 100644 --- a/components/Nav.tsx +++ b/components/Nav.tsx @@ -6,7 +6,7 @@ populateCache(); export default function NavBar() { return ( -