This commit is contained in:
2025-04-17 13:46:13 -03:00
parent dbb924198d
commit 987eb63825

View File

@@ -82,7 +82,7 @@ export function Menu({ recentCourses }) {
{recentCourses.map(({ data: { title, slug } }, idx) => {
return (
<li key={idx}>
<a href={slug}>{title}</a>
<a href={`/${slug}`}>{title}</a>
</li>
)
})}