Skip to content

Commit

Permalink
move past shows link to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Sep 10, 2024
1 parent 9182d92 commit 13ac3b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 6 additions & 1 deletion app/components/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export const Layout: React.FC<Props> = ({ type, children, ...props }) => {
<main {...props}>{children}</main>
{!props.noFooter && (
<footer>
<NavLink to="/legal">legal notice</NavLink>
<NavLink prefetch="intent" to="/legal">
legal notice
</NavLink>
<NavLink prefetch="intent" to="/past-shows">
past shows
</NavLink>
</footer>
)}
</div>
Expand Down
3 changes: 0 additions & 3 deletions app/routes/_index/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,6 @@ export default function Index() {
<NavLink to="/faq" prefetch="intent">
faq
</NavLink>
<NavLink prefetch="intent" to="/past-shows">
past shows
</NavLink>
<NavLink prefetch="intent" to="/songbook">
songbook
</NavLink>
Expand Down

0 comments on commit 13ac3b6

Please sign in to comment.