Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6fa55aa
Begin building out intro course
zackproser Apr 14, 2024
5a3f829
Delete borked image
zackproser Apr 14, 2024
75c0012
Continue building out course
zackproser Apr 14, 2024
2078c7f
Jesus fucking christ
zackproser Apr 15, 2024
92f6424
Overflow scroll. Continue adding sections
zackproser Apr 15, 2024
1fb50bd
Add section 4
zackproser Apr 15, 2024
ce0cebb
Tweak content
zackproser Apr 17, 2024
4dec827
Restructure course segments
zackproser Apr 18, 2024
a1a6e4a
Continue to iterate on course outline
zackproser Apr 18, 2024
4765dc3
Fix course name rendering in CourseBrowser
zackproser Apr 19, 2024
07df9a6
Separate container for CourseBrowser reducing padding
zackproser Apr 19, 2024
8369e0d
Maybe just drop the paper backing from the layout entirely
zackproser Apr 19, 2024
9236d01
Fix headers in CourseBrowser when in dark mode
zackproser Apr 19, 2024
d16fc73
Remove unused function
zackproser Apr 19, 2024
75558ab
Fix Layout props
zackproser Apr 19, 2024
0af3526
Iterate on course material prior to simplifing loader scheme
zackproser Apr 19, 2024
5d55a61
Holy fucking shit :(
zackproser Apr 20, 2024
25bbe5d
Segments rendering properly again
zackproser Apr 20, 2024
a15c199
Fix build error in lib/courses.ts
zackproser Apr 20, 2024
c340b78
Fix sidebar link rendering in CourseBrowser
zackproser Apr 20, 2024
89f452a
Remove error.code
zackproser Apr 20, 2024
e52dd98
Fix completed sections being marked as seen
zackproser Apr 20, 2024
97bbf83
Use positions on segment and currentSegment
zackproser Apr 20, 2024
951b354
Refactor
zackproser Apr 21, 2024
70304b8
Continue building out and linking course sections
zackproser Apr 21, 2024
f594d81
Round out initial course content skeleton
zackproser Apr 21, 2024
b2dd4fa
Add GitHub Pages tutorial using content handlers
zackproser May 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ yarn-error.log*
# generated files
/public/rss/
headlines.json
.vscode
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"@next/third-parties": "^14.1.0",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.3.0",
"@types/mdx": "^2.0.9",
"@types/node": "^20.4.7",
"@types/react": "^18.2.18",
"@types/stripe": "^8.0.417",
Expand All @@ -42,6 +41,7 @@
"js-tiktoken": "^1.0.10",
"next": "^13.4.16",
"next-auth": "^4.24.5",
"next-mdx-remote": "^4.4.1",
"next-router-mock": "^0.9.3",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.9",
Expand All @@ -50,11 +50,16 @@
"postmark": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"react-stripe-js": "^1.1.5",
"react-tweet": "^3.1.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"remark-html": "^16.0.1",
"remark-toc": "^9.0.0",
"sharp": "^0.32.6",
"stripe": "^14.12.0",
Expand All @@ -63,6 +68,7 @@
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/mdx": "^2.0.9",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.16",
"prettier": "^3.0.1",
Expand Down
Loading