Skip to content

Commit c9df1a0

Browse files
committed
Add /project prefix to links
1 parent 74dcf52 commit c9df1a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Navigation.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const sortedProjects = projects.sort((a, b) => {
5454
<a href="/projects">All Projects</a>
5555
{
5656
projects.map((project) => (
57-
<a href={project.id}>{project.data.title}</a>
57+
<a href={`/projects/${project.id}`}>{project.data.title}</a>
5858
))
5959
}
6060
</NavDropdown>

0 commit comments

Comments
 (0)