Description:
When a user enters their email in the newsletter subscription field and clicks Subscribe, the page redirects to the homepage. This creates a poor user experience since users expect immediate feedback on their action.
Expected Behavior:
On successful subscription → Show a success toast (e.g., "Subscribed successfully 🎉").
On failure → Show an error toast (e.g., "Failed to subscribe. Please try again ❌").
The page should not refresh or redirect.
Steps to Reproduce:
Scroll to the footer section.
Enter an email in the newsletter subscription input.
Click the Subscribe button.
Observe that the page redirects to the homepage instead of showing a toast.
Proposed Fix:
Prevent default form submission behavior (event.preventDefault()).
Implement a toast notification system (success/error).
Ensure no page reload/redirect occurs.