Skip to content

Commit

Permalink
feat(resume): update DownloadCV component to enhance accessibility an…
Browse files Browse the repository at this point in the history
…d remove unused CSS styles
  • Loading branch information
1chooo committed Dec 27, 2024
1 parent 5e2b2f1 commit b73515e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
7 changes: 5 additions & 2 deletions apps/web/src/components/resume/download-cv.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import { IoCloudDownloadOutline } from "react-icons/io5";
import IconBox from "../icon-box";
import "@/styles/resume/download-cv.css";
import Link from "next/link";

function DownloadCV() {
return (
<section className="timeline">
<div className="title-wrapper">
<IconBox icon={IoCloudDownloadOutline} />
<Link href="./cv.pdf" target="_blank" className="hyperlink-highlight">
<Link
id="download-hugo-cv"
href="./cv.pdf"
target="_blank"
className="text-orange-yellow-crayola underline font-bold flex items-center gap-4 hover:text-opacity-70">
Download Hugo&apos;s full Curriculum Vitae/Resume (October 2024)
</Link>
</div>
Expand Down
11 changes: 0 additions & 11 deletions apps/web/src/styles/resume/download-cv.css

This file was deleted.

0 comments on commit b73515e

Please sign in to comment.