Skip to content

Commit

Permalink
updated resume
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivranjanmars committed Jan 11, 2024
1 parent 463ed1f commit 55a6744
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/assets/icons/eye.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/assets/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ import arrow from './arrow.svg'
import contact from './contact.svg'
import soundon from './soundon.png'
import soundoff from './soundoff.png'
import threejs from './threejs.svg'
import threejs from './threejs.svg'
import eye from './eye.svg'
export {
css,
express,
Expand Down Expand Up @@ -54,5 +55,6 @@ export {
arrow,
contact,
soundon,
soundoff
soundoff,
eye
}
1 change: 0 additions & 1 deletion src/assets/react.svg

This file was deleted.

25 changes: 18 additions & 7 deletions src/components/HomeInfo.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
import { Link } from "react-router-dom";

import { arrow } from "../assets/icons";
import { eye,arrow } from "../assets/icons";

const HomeInfo = ({ currentStage }) => {
if (currentStage === 1)
return (
<h1 className="sm:text-xl sm:leading-snug text-center neo-brutalism-blue py-4 px-8 text-white mx-5">
Hi, I'm
<span className="font-semibold mx-2 text-white">Rajiv Ranjan</span>
👋
<br />A budding programmer exploring new fields of development.
</h1>
<>
<h1 className="sm:text-xl sm:leading-snug text-center neo-brutalism-blue py-4 px-8 text-white mx-5">
Hi, I'm
<span className="font-semibold mx-2 text-white">Rajiv Ranjan</span>
👋
<br />A budding programmer exploring new fields of development.
<br />
<br />
<Link
to="https://rajivranjanmars.github.io/portfolio-scss/assets/Rajiv_Ranjan.pdf"
className="neo-brutalism-white neo-btn"
>
<img src={eye} alt="arrow" className="w-4 h-4 object-contain" />
My Resume
</Link>
</h1>
</>
);

if (currentStage === 2) {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Home = () => {
audioRef.current.loop = true;

const [currentStage, setCurrentStage] = useState(1);
const [isRotating, setIsRotating] = useState(false);
const [isRotating, setIsRotating] = useState(true);
const [isPlayingMusic, setIsPlayingMusic] = useState(true);

useEffect(() => {
Expand Down

0 comments on commit 55a6744

Please sign in to comment.