Counselllor / Counsellor-Web

Use valid anchors JS-0739
Anti-pattern
Minor
6 occurrences in this check
Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
111                <a href="#"/>
112              </li>
113              <li>
114                <a href="#" onClick={handleSignOut}>115                  Log Out
116                </a>
117              </li>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
108                <a href="#">Career Support</a>
109              </li>
110              <li className="dot">
111                <a href="#"/>112              </li>
113              <li>
114                <a href="#" onClick={handleSignOut}>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
105                <a href="#">Courses</a>
106              </li>
107              <li>
108                <a href="#">Career Support</a>109              </li>
110              <li className="dot">
111                <a href="#"/>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
102                <a href="#">Jobs</a>
103              </li>
104              <li>
105                <a href="#">Courses</a>106              </li>
107              <li>
108                <a href="#">Career Support</a>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
 99                <a href="#">Top Universities</a>
100              </li>
101              <li>
102                <a href="#">Jobs</a>103              </li>
104              <li>
105                <a href="#">Courses</a>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
 96          <div className={`menu ${menuOpen ? "show" : ""}`}>
 97            <ul>
 98              <li>
 99                <a href="#">Top Universities</a>100              </li>
101              <li>
102                <a href="#">Jobs</a>