Skip to content

Commit

Permalink
updated resume, worked on pfp, update skills and finally update proje…
Browse files Browse the repository at this point in the history
…cts section.
  • Loading branch information
Smoke221 committed Apr 15, 2024
1 parent 8849616 commit c6c5ddc
Show file tree
Hide file tree
Showing 8 changed files with 307 additions and 11 deletions.
Binary file added Images/Screenshot (231).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Images/cropped.jpg
Binary file not shown.
Binary file added Images/dsa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/my_pfp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
265 changes: 265 additions & 0 deletions Images/python.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 23 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h1>About me</h1>
<img
id="about-img"
class="home-img"
src="./Images/cropped.jpg"
src="./Images/my_pfp.jpg"
alt=""
/>
<div id="about-info">
Expand Down Expand Up @@ -198,31 +198,28 @@ <h3 class="project-title">
<div class="project-card">
<div class="project-info">
<h3 class="project-title">
<span class="actual-text">File Management System</span>
<span class="actual-text">ZipZapURL</span>
</h3>
<p class="project-description">
A robust file management system to organize, store, and retrieve
files efficiently
ZipZapURL is a URL shortener application built using Node.js and Express. It allows users to convert long URLs into short and easily shareable links.
</p>
<div class="project-tech-stack">
<p>JavaScript</p>
<p>Express JS</p>
<p>Node JS</p>
<p>React</p>
<p>AWS Services</p>
<p>S3 Bucket</p>
<p>MongoDB</p>
</div>
<a
class="project-github-link"
href="https://github.com/Smoke221/File-Management-System-Frontend"
href="https://github.com/Smoke221/ZipZapURL-a-URL-shortner"
target="_blank"
>Source code</a
>
<br />
<br />
<a
class="project-deployed-link"
href="https://file-management-system-frontend.vercel.app/"
href="https://zipzapurl.netlify.app/"
target="_blank"
>Live here</a
>
Expand All @@ -231,7 +228,7 @@ <h3 class="project-title">
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="./Images/Screenshot (218).png" alt="" />
<img src="./Images/Screenshot (231).png" alt="" />
</div>
</div>
</div>
Expand Down Expand Up @@ -328,6 +325,22 @@ <h2 class="skills-card-name">AWS</h2>
/>
<h2 class="skills-card-name">MY SQL</h2>
</div>
<div class="skills-card">
<img
class="skills-card-img"
src="./Images/python.svg"
alt=""
/>
<h2 class="skills-card-name">Python</h2>
</div>
<div class="skills-card">
<img
class="skills-card-img"
src="./Images/dsa.png"
alt=""
/>
<h2 class="skills-card-name">DSA</h2>
</div>
</div>
</div>
<div class="github">
Expand Down
18 changes: 18 additions & 0 deletions portfolio.css
Original file line number Diff line number Diff line change
Expand Up @@ -604,3 +604,21 @@ footer > span > a + span {
font-family: "Lexend", sans-serif;
font-size: x-large;
}


#about-img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}

#about-img:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

2 changes: 1 addition & 1 deletion portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ GitHubCalendar(".calendar", "Smoke221", { responsive: true });
function downloadResume() {
var link = document.createElement('a');
link.setAttribute('download', 'Kancharla-Anil-resume.pdf');
link.href = "https://test-resume.masaischool.com/resume?resumeId=64c0c38653b9f28d84aa4c0a&selectedTemplate=TwoColumnMinimal";
link.href = "https://drive.google.com/file/d/1kz_dIzqBN54y90HuqVGJuzLR-xpHSdnO/view?usp=sharing";
link.target = "_blank";
link.style.display = 'none';
document.body.appendChild(link);
Expand Down

0 comments on commit c6c5ddc

Please sign in to comment.