Skip to content

Add Hover Effects to Footer Navigation Links & "Join on GitHub" Header ButtonΒ #107

@RAJVEER42

Description

@RAJVEER42

πŸ“ Feature Request: Add Hover Effects to Footer Navigation Links & "Join on GitHub" Header Button
❓ Is your feature request related to a problem?
Yes. The footer navigation links (Home, About, Contact) and the "Join on GitHub" button in the top-right header currently lack interactive visual feedback. This may reduce engagement and make them appear non-interactive, especially to new users.

βœ… Describe the solution you'd like
Apply hover effects to both sets of interactive elements:

πŸ”» Footer Links (Home, About, Contact)
πŸ”˜ Underline or animate text on hover

🎨 Change color to theme accent or lighter shade

πŸ–± Add cursor: pointer

css

.footer-link {
transition: color 0.3s ease, text-decoration 0.3s ease;
color: #555;
text-decoration: none;
}
.footer-link:hover {
color: #673ab7; /* Theme accent */
text-decoration: underline;
cursor: pointer;
}
πŸ”Ί Header Link: Join on GitHub
πŸ’« Add scale or slight color change on hover

πŸ”— Indicate it's clickable (hover pointer)

css

.header-join-btn {
transition: transform 0.2s ease, background-color 0.2s ease;
}
.header-join-btn:hover {
transform: scale(1.05);
background-color: #333; /* Or GitHub color if themed */
color: white;
cursor: pointer;
}
πŸ” Describe alternatives you've considered
Keeping current static state (but this reduces UX quality)

Adding hover only to GitHub link (but for consistency and completeness, footer links should be interactive too)

πŸ“Ž Additional Context
Adding hover effects ensures:

βœ… Improved accessibility and usability

✨ Visual responsiveness across the site

πŸ”„ Consistent UI feedback across all clickable elements

πŸ™‹β€β™‚οΈ I'd love to contribute!
πŸ’‘ Please assign this issue to me.
I’d be happy to implement and preview these enhancements in a pull request.

Thanks! 😊

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions