Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lalewis7 committed Oct 7, 2023
2 parents f4544bc + 26816a3 commit ec9040f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions app/components/Education.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Image from "next/image";
import { FileEarmarkMedicalFill } from "react-bootstrap-icons";

export default function Education({ edu }) {
return <>
Expand All @@ -18,12 +17,6 @@ export default function Education({ edu }) {
<span className="fw-lighter float-md-end">{edu.time}</span>
</div>
</div>
<div className="h5 mb-0 mt-2">
<a href="/diploma.pdf" target="_blank" rel="noopener noreferrer"
className="text-reset fw-light d-inline-flex align-items-center m-0" tabIndex={0} role="link" aria-label="View Diploma">
Diploma<FileEarmarkMedicalFill className="ms-1" />
</a>
</div>
</div>
</div>
</>
Expand Down
4 changes: 2 additions & 2 deletions app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ export default function RootLayout({ children }) {
<div className="row row-gap-2">
<div className="col col-lg-12">
<span>
<a href={`https://drive.google.com/uc?export=download&id=${process.env.NEXT_PUBLIC_RESUME_GDRIVE_ID}`}
download={`${process.env.NEXT_PUBLIC_NAME.split(" ").join("_")}_Resume.pdf`}
<a href={`https://drive.google.com/file/d/${process.env.NEXT_PUBLIC_RESUME_GDRIVE_ID}/view`}
target="_blank" rel="noopener noreferrer"
className="text-reset fw-light d-inline-flex align-items-center" tabIndex={0} role="link" aria-label="Download Resume">
Resume<FileEarmarkPdfFill className="ms-1" />
</a>
Expand Down

0 comments on commit ec9040f

Please sign in to comment.