Skip to content

Commit e529c5a

Browse files
committed
Link "view more books" to new books overview page
1 parent febca0c commit e529c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/pages/SubjectLandingPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const LandingPageFooter = ({context}: {context: PageContextState}) => {
104104
</div>
105105
<Col className="d-flex flex-column">
106106
{books.slice(0, 2).map((book, index) => <BookCard key={index} {...book} />)}
107-
{books.length > 2 && <Button tag={Link} color="keyline" to={`/publications`} className="btn mt-4 mx-5">View more books</Button>}
107+
{books.length > 2 && <Button tag={Link} color="keyline" to={`/books`} className="btn mt-4 mx-5">View more books</Button>}
108108
</Col>
109109
</>
110110
: <>

0 commit comments

Comments
 (0)