Skip to content

Commit

Permalink
Change logo click redirection to '/PicConvert/'
Browse files Browse the repository at this point in the history
Updated the event listener for the logo click to redirect users to the '/PicConvert/' URL instead of the root URL ('/').
  • Loading branch information
NordinAlex committed Aug 25, 2024
1 parent b12cf2b commit 54dcef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Website/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ document.addEventListener("DOMContentLoaded", () => {
}

// Handle logo click - Redirect to home
logo.addEventListener('click', () => window.location.href = '/');
logo.addEventListener('click', () => window.location.href = '/PicConvert/');

// Handle menu icon click - Toggle navigation menu
menuIcon.addEventListener('click', () => {
Expand Down

0 comments on commit 54dcef2

Please sign in to comment.