-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: Rename 'AnimatedButton' to 'ExpertiseLinks' UI component
- Enhance accessibility. - Rename component import and usage in 'AboutPage'. - Rename style file and class names.
- Loading branch information
Showing
4 changed files
with
45 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
import '../../styles/UI/ExpertiseLinks.scss'; | ||
|
||
const ExpertiseLinks: React.FC = () => ( | ||
<div className="expertise-links"> | ||
<Link | ||
to="/homepage/expertise" | ||
className="text-hue-rotate" | ||
aria-label="navigate to expertise section" | ||
> | ||
languages | ||
</Link> | ||
<Link | ||
to="/homepage/expertise" | ||
className="text-hue-rotate" | ||
aria-label="navigate to expertise section" | ||
> | ||
frameworks | ||
</Link> | ||
<Link | ||
to="/homepage/expertise" | ||
className="text-hue-rotate" | ||
aria-label="navigate to expertise section" | ||
> | ||
skills | ||
</Link> | ||
<a | ||
href="https://docs.google.com/document/d/1vfOALwpILAh8Jn29zV6aO6jwuGZQwLyYjRb3_YKZfQ0/edit?usp=sharing" | ||
className="text-hue-rotate" | ||
aria-label="navigate to Arthur's resume which is hosted on Google Docs" | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
> | ||
resume | ||
</a> | ||
</div> | ||
); | ||
|
||
export default ExpertiseLinks; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters