Skip to content

Commit

Permalink
fix(breadcrumb): Correct homepage link
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Mar 21, 2024
1 parent 8f54f5f commit f1cf6af
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/blog-home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const BlogHome = () => {
return (
<>
<Breadcrumbs aria-label="breadcrumb" color="color.scecondary">
<Link underline="hover" color="inherit" href="/">
<Link underline="hover" color="inherit" href="#">
Open Trails
</Link>
<Typography>Blog</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Blog = () => {
return (
<>
<Breadcrumbs aria-label="breadcrumb" color="color.scecondary">
<Link underline="hover" color="inherit" href="/">
<Link underline="hover" color="inherit" href="#">
Open Trails
</Link>
<Link
Expand Down
2 changes: 1 addition & 1 deletion src/pages/trail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const Trail = () => {
<Grid container spacing={{ xs: 2, md: 3 }} columns={{ xs: 4, sm: 8, md: 12 }}>
<Grid item xs={12}>
<Breadcrumbs aria-label="breadcrumb" color="color.scecondary">
<Link underline="hover" color="inherit" href="/">
<Link underline="hover" color="inherit" href="#">
Open Trails
</Link>
<Link underline="hover" color="inherit" href="#/trails">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/trails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Trails = () => {
return (
<>
<Breadcrumbs aria-label="breadcrumb" color="color.scecondary">
<Link underline="hover" color="inherit" href="/">
<Link underline="hover" color="inherit" href="#">
Open Trails
</Link>
<Typography>Trails</Typography>
Expand Down

0 comments on commit f1cf6af

Please sign in to comment.