Skip to content

Commit

Permalink
next & prev button overflow, readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaByte committed Jan 24, 2024
1 parent 2fb2b9b commit ed492bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# NakhlahJS (نخلة جي أس)

![Deploy Workflow](https://github.com/TeaByte/NakhlahJS/actions/workflows/build-deno.yml/badge.svg)

🚧 Still in a preliminary version and under continuous development

NakhlahJS is a dynamic Arabic JavaScript learning platform, drawing inspiration
from the style of [freeCodeCamp](https://www.freecodecamp.org/learn/). Our
comprehensive lessons are structured based on the principles of freeCodeCamp and
the extensive documentation available on
[MDN Web Docs](https://developer.mozilla.org/en-US/).

🚧 It is still in a preliminary version and under continuous development

## Overview

Learning JavaScript has never been more accessible. NakhlahJS is designed to
Expand All @@ -34,9 +36,9 @@ help you achieve your learning goals.
## TODO LIST

- [ ] Blogs page
- [x] Quizes system
- [ ] Quizes system
- [ ] Improve phone users experience
- [x] Next and prev lesson buttons
- [ ] Next and prev lesson buttons (maybe?)

---

Expand Down
4 changes: 2 additions & 2 deletions components/MarkdownSplit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function MarkdownSplit({
<>
<div class="flex px-2 pt-2 gap-2">
{nextCourse && (
<div class="grow overflow-hidden">
<div class="grow">
<a
href={`/${nextCourse}`}
class="flex items-center gap-2 btn btn-outline flex-nowrap"
Expand All @@ -33,7 +33,7 @@ export default function MarkdownSplit({
)}

{prevCourse && (
<div class="grow overflow-hidden">
<div class="grow">
<a
href={`/${prevCourse}`}
class="flex items-center gap-2 btn btn-outline flex-nowrap"
Expand Down

0 comments on commit ed492bd

Please sign in to comment.