Skip to content

Commit

Permalink
Remove Resume link due to suspicious recruiter activity (#8)
Browse files Browse the repository at this point in the history
* Remove Resume link due to suspicious recruiter activity

* Blank out shared resume file
  • Loading branch information
andylech authored Sep 18, 2024
1 parent 1ccc765 commit bdc368e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
30 changes: 16 additions & 14 deletions src/containers/greeting/Greeting.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, {useContext} from "react";
import "./Greeting.scss";
import SocialMedia from "../../components/socialMedia/SocialMedia";
import Button from "../../components/button/Button";
// import Button from "../../components/button/Button";
import {greeting} from "../../portfolio";
import StyleContext from "../../contexts/StyleContext";

Expand All @@ -24,19 +24,21 @@ export default function Greeting() {
{greeting.subTitle}
</p>
<SocialMedia />
<div className="button-greeting-div">
{greeting.resumeLink && (
<a
href={greeting.resumeLink}
className="download-link-button"
target="_blank"
rel="noopener noreferrer"
download="Andy Lech - Resume.pdf"
>
<Button text="Download my resume" newTab="true" />
</a>
)}
</div>
{/*
<div className="button-greeting-div">
{greeting.resumeLink && (
<a
href={greeting.resumeLink}
className="download-link-button"
target="_blank"
rel="noopener noreferrer"
download="Andy Lech - Resume.pdf"
>
<Button text="Download my resume" newTab="true" />
</a>
)}
</div>
*/}
</div>
</div>
</div>
Expand Down
3 changes: 1 addition & 2 deletions src/portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ const greeting = {
subTitle:
"I've been working in .NET since 2011, creating cross-platform .NET mobile apps with Xamarin.Forms and .NET MAUI on Android and iOS for Golf Channel and others since 2015.",
// Set to empty to hide the button
resumeLink:
"https://ln5.sync.com/dl/b03f97ab0/ymusgjzc-74qe5izu-fdnn638i-ipnuf38d",
// resumeLink: "",
displayGreeting: true // Set false to hide this section, defaults to true
};

Expand Down

0 comments on commit bdc368e

Please sign in to comment.