Skip to content

Commit

Permalink
Changed images, projects and updated resume
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanPunjani committed Jun 24, 2021
1 parent f1e4476 commit 65062bd
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 31 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions src/components/Hero/Hero.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, { useContext, useState, useEffect } from 'react';
import React, { useState, useEffect } from 'react';
import { Container } from 'react-bootstrap';
import Fade from 'react-reveal/Fade';
import PortfolioContext from '../../context/context';
// import PortfolioContext from '../../context/context';

const Header = () => {
const { hero } = useContext(PortfolioContext);
const { title, name, subtitle, cta } = hero;
// const { hero } = useContext(PortfolioContext);
// const { title, name, subtitle, cta } = hero;

const [isDesktop, setIsDesktop] = useState(false);
const [isMobile, setIsMobile] = useState(false);
Expand All @@ -25,15 +25,15 @@ const Header = () => {
<Container>
<Fade left={isDesktop} bottom={isMobile} duration={1000} delay={500} distance="30px">
<h1 className="hero-title">
{title || 'Hi, my name is'} <span className="text-color-main">{name}</span>
Hi, my name is <span className="text-color-main">Rohan Punjani</span>
<br />
{subtitle}
I&apos;m a Designer & Full Stack Developer
</h1>
</Fade>
<Fade left={isDesktop} bottom={isMobile} duration={1000} delay={1000} distance="30px">
<p className="hero-cta">
<a className="cta-btn cta-btn--hero" href="#about">
{cta || 'Know more'}
Know more
</a>
</p>
</Fade>
Expand Down
Binary file modified src/images/RESUME.pdf
Binary file not shown.
Binary file removed src/images/RESUME_2.pdf
Binary file not shown.
Binary file added src/images/apriori.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 src/images/colors.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 modified src/images/favicon.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 src/images/favicon2.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 src/images/profile.jpg
Binary file not shown.
Binary file removed src/images/project.jpg
Binary file not shown.
Binary file modified src/images/rohan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 29 additions & 19 deletions src/mock/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,36 @@ export const headData = {
};

// HERO DATA
export const heroData = {
title: '',
name: 'Rohan Punjani',
subtitle: "I'm a Designer & Full Stack Developer ",
cta: '',
};
// export const heroData = {
// title: '',
// name: 'Rohan Punjani',
// subtitle: "I'm a Designer & Full Stack Developer ",
// cta: '',
// };

// ABOUT DATA
export const aboutData = {
img: 'rohan.jpg',
paragraphOne:
'I am a third-year engineering student studying at Ramrao Adik Institute of Technology, Navi Mumbai. My passion is to design/code difficult problems into a beautifully simple solutions.',
'Rohan Punjani is a third-year engineering student studying at Ramrao Adik Institute of Technology, Navi Mumbai. His passion is to design/code seemingly challenging problems into beautifully simple solutions.',
paragraphTwo:
'I have worked under the bucket of Image Processing and Full Stack Development and am also a competitive programmer. I spend most of my college time working on different projects for the college or upcoming competitions.',
paragraphThree:
'Along with academics, I was also a leading member of the cultural committee of my Junior college.',
resume: 'RESUME_2.pdf', // if no resume, the button will not show up
'He has worked under the bucket of Image Processing and Full Stack Development and is also a competitive programmer. He spends most of his college time either working on different projects for the college or participating in upcoming competitions.',
resume: 'RESUME.pdf', // if no resume, the button will not show up
};

// PROJECTS DATA
export const projectsData = [
{
id: uuidv1(),
img: 'colors.png',
title: 'Colors',
info:
'Colors is a quick frontend Dashboard made using ReactJS. This is an example of a desing implementation where the design was taken from dribbble.com',
info2: '',
livetext: 'See Live',
url: 'https://dashboard-colors.netlify.app',
repo: 'https://github.com/RohanPunjani/colors', // if no repo, the button will not show up
},
{
id: uuidv1(),
img: 'grillax.png',
Expand All @@ -42,14 +51,15 @@ export const projectsData = [
},
{
id: uuidv1(),
img: 'bloggit.png',
title: 'Bloggit',
img: 'apriori.png',
title: 'Apriori Data Visualization',
info:
'Bloggit is a blog editor that helps you to write blogs and compile your thoughts without messing with your thought flow.',
'Another Dashboard for data visualization based on flask Api where the data is fetched and seen on the ReactJS dashboard with dynamic rendering',
info2: '',
livetext: 'See Live',
url: 'https://bloggit-app1.herokuapp.com',
repo: 'https://github.com/RohanPunjani/Bloggit', // if no repo, the button will not show up
livetext: 'Source Code',
url: 'https://github.com/RohanPunjani/AprioriDataVisualization', // if no repo, the button will not show up
// url: 'http://grillax.dev-rohan.com',
// repo: 'https://github.com/RohanPunjani/Grillax', // if no repo, the button will not show up
},
{
id: uuidv1(),
Expand Down Expand Up @@ -89,12 +99,12 @@ export const footerData = {
{
id: uuidv1(),
name: 'linkedin',
url: 'https://www.linkedin.com/in/rohan-punjani-5175a9163/',
url: 'https://www.linkedin.com/in/rohanpunjani/',
},
{
id: uuidv1(),
name: 'instagram',
url: 'https://www.instagram.com/rohan__punjani/',
url: 'https://www.instagram.com/punjani.rohan/',
},
{
id: uuidv1(),
Expand Down
4 changes: 2 additions & 2 deletions src/style/abstracts/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// COLORS
$primary-color: #c51263;
$secondary-color: #ce0d64;
$primary-color: #062936;
$secondary-color: #034661;

// $primary-color: #7f449d;
// $secondary-color: #793fc1;
Expand Down

0 comments on commit 65062bd

Please sign in to comment.