-
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.
Currently doesn't work with smaller screens for some reason. There is a bug with the embedded
- Loading branch information
Showing
4 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
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,35 @@ | ||
"use client"; | ||
|
||
import Background from "./background"; | ||
|
||
const Resume: React.FC = () => { | ||
return ( | ||
<main id="resume" className="animate-fadeIn"> | ||
<Background styles="h-max w-max"> | ||
<p className="text-5xl items-center text-center text-black">Resume</p> | ||
<div className="grid grid-cols-1 lg:grid-cols-2"> | ||
<div className="hidden lg:flex"> | ||
<embed | ||
src="Resume.pdf#zoom=100" | ||
width={window.innerWidth / 2} | ||
height={window.innerHeight * 0.8} | ||
type="application/pdf" | ||
/> | ||
</div> | ||
<div className="flex items-center justify-center"> | ||
<a href="/Resume.pdf" download="Resume.pdf"> | ||
<button | ||
type="button" | ||
className="text-2xl bg-catppuccin_red text-white py-2 px-4 rounded-md hover:bg-red-400 transition duration-300" | ||
> | ||
Download Resume | ||
</button> | ||
</a> | ||
</div> | ||
</div> | ||
</Background> | ||
</main> | ||
); | ||
}; | ||
|
||
export default Resume; |
Binary file not shown.