working pages and app router

This commit is contained in:
2024-09-07 08:52:03 -06:00
parent 3c86d3be88
commit 5b610e2777
135 changed files with 16129 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ export default function CourseList() {
return (
<div>
{courses.map((c) => (
<Link href={`/course/${c}`} key={c}>
<Link href={`/course/${c}`} key={c} shallow={true}>
{c}{" "}
</Link>
))}