Skip to content

Commit

Permalink
added resume
Browse files Browse the repository at this point in the history
  • Loading branch information
PrathamLalwani committed Nov 28, 2023
1 parent 2485fd1 commit 3c72016
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Binary file added src/assets/Pratham_Lalwani_Resume.pdf
Binary file not shown.
13 changes: 8 additions & 5 deletions src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ const NavBar: React.FC = () => {
className="mr-2 inline-block min-h-[24px] min-w-[24px] flex-grow-0 sm:hidden"
/>
<ul
className={`absolute ${showNavItems
? "left-0 top-0 flex items-center bg-background/80 p-10 text-2xl"
: "hidden"
} z-10 mt-20 h-[calc(100vh-5rem)] w-full flex-col justify-around transition-all sm:relative sm:m-0 sm:flex sm:h-full sm:flex-row sm:justify-start`}
className={`absolute ${
showNavItems
? "left-0 top-0 flex items-center bg-background/80 p-10 text-2xl"
: "hidden"
} z-10 mt-20 h-[calc(100vh-5rem)] w-full flex-col justify-around transition-all sm:relative sm:m-0 sm:flex sm:h-full sm:flex-row sm:justify-start`}
>
{NavItems.map((item) => (
<Link
Expand Down Expand Up @@ -71,7 +72,9 @@ const NavBar: React.FC = () => {
<div
className={`ml-8 rounded-xl bg-gradient-to-br from-primary-500 to-accent-300 px-4 py-2 text-text `}
>
<a href="#">Resume</a>
<a href="src/assets/Pratham_Lalwani_Resume.pdf" target="_blank">
Resume
</a>
</div>
</li>
</ul>
Expand Down

0 comments on commit 3c72016

Please sign in to comment.