Skip to content

Commit

Permalink
Added resume button
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalS99 committed Sep 17, 2023
1 parent bc541f6 commit 90cd501
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions frontend/src/components/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function scrollFn(e) {
let type = $(e.target).data("link");
console.log("dsd")
console.log("dsd");
document.querySelector("#" + type).scrollIntoView({ behavior: "smooth" });
}

Expand Down Expand Up @@ -55,7 +55,12 @@ export default function Navbar() {
</a>
</li>
<li class="text-primary">
<a>Resume</a>
<a
href="https://sauron-data.s3.amazonaws.com/SDE-Vishal-Saranathan.pdf"
target="_blank"
>
Resume
</a>
</li>
</ul>
</div>
Expand Down Expand Up @@ -88,8 +93,14 @@ export default function Navbar() {
</a>
</li>
<li>
<button class="btn btn-outline btn-border">Resume</button>
{/* <a>Resume</a> */}
<button class="btn btn-outline btn-border">
<a
href="https://sauron-data.s3.amazonaws.com/SDE-Vishal-Saranathan.pdf"
target="_blank"
>
Resume
</a>
</button>
</li>
</ul>
</div>
Expand Down

0 comments on commit 90cd501

Please sign in to comment.