Problem Statement
The logo in the board.html header is currently a static div, making it non-interactive. Users on the /play/ route have no intuitive way to navigate back to the landing/home page without manually editing the URL or using browser navigation controls.
This breaks a common UX expectation where clicking the application logo redirects users to the homepage.
Proposed Solution
Wrap the existing logo container inside an anchor (<a>) tag that redirects users to the landing page route.
Suggested implementation:
<a href="{% url 'landing' %}" class="logo-container" style="text-decoration: none;">
...
</a>
Problem Statement
The logo in the
board.htmlheader is currently a staticdiv, making it non-interactive. Users on the/play/route have no intuitive way to navigate back to the landing/home page without manually editing the URL or using browser navigation controls.This breaks a common UX expectation where clicking the application logo redirects users to the homepage.
Proposed Solution
Wrap the existing logo container inside an anchor (
<a>) tag that redirects users to the landing page route.Suggested implementation: