Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kjcreddy666 committed Apr 7, 2024
1 parent 319a7a3 commit 8e99b0e
Show file tree
Hide file tree
Showing 23 changed files with 111 additions and 103 deletions.
2 changes: 1 addition & 1 deletion src/components/Cards/EducationCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const EducationCard = ({ education }) => {
return (
<Card>
<Top>
<Image src={education.img} />
<Image src={require(`../../images/${education.img}`)} />
<Body>
<Name>{education.school}</Name>
<Degree>{education.degree}</Degree>
Expand Down
13 changes: 6 additions & 7 deletions src/components/Cards/ProjectCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import styled from 'styled-components'


const Button = styled.button`
display: none;
width: 100%;
padding: 10px;
background-color: ${({ theme }) => theme.white};
Expand All @@ -15,7 +14,7 @@ const Button = styled.button`
cursor: pointer;
transition: all 0.8s ease-in-out;
`
const Card = styled.a`
const Card = styled.div`
width: 330px;
height: 490px;
background-color: ${({ theme }) => theme.card};
Expand All @@ -33,9 +32,6 @@ const Card = styled.a`
box-shadow: 0 0 50px 4px rgba(0,0,0,0.6);
filter: brightness(1.1);
}
&:hover ${Button} {
display: block;
}
`

const Image = styled.img`
Expand Down Expand Up @@ -113,9 +109,12 @@ const Avatar = styled.img`
`

const ProjectCards = ({project}) => {
const handleButtonClick = () => {
window.open(project.github, "_blank");
}
return (
<Card >
<Image src={project.image}/>
<Image src={require(`../../images/${project.image}`)}/>
<Tags>
{project.tags?.map((tag, index) => (
<Tag>{tag}</Tag>
Expand All @@ -130,7 +129,7 @@ const ProjectCards = ({project}) => {
<Avatar src={member.img}/>
))}
</Members>
{/* <Button>View Project</Button> */}
<Button onClick = {(project)=> {handleButtonClick()}}>View Project</Button>
</Card>
)
}
Expand Down
3 changes: 3 additions & 0 deletions src/components/Navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ const NavContainer = styled.div`
`;

const NavLogo = styled(LinkR)`
color : #fff;
font-size : 1.5rem;
font-weight : 500;
width : 80%;
padding : 0 6px;
display : flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Skills/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const Skills = () => (
{
item.skills.map((skill) => (
<SkillItem>
<SkillImg src={skill.image}/>
<SkillImg src={require(`../../images/${skill.image}`)}/>
{skill.name}
</SkillItem>
))
Expand Down
192 changes: 98 additions & 94 deletions src/data/constants.js

Large diffs are not rendered by default.

Binary file added src/images/C-logo.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/CPP-logo.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/CSS3-logo.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/Git-Iogo.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/GitHub-logo.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/JavaScript-logo.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/Python-logo.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/bootstrap-logo.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/cmrit-logo.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/html5-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/images/java-logo.svg
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/narayana-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/images/nodejs-logo.svg
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/portfolio-logo.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/simon-logo.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/spotify-logo.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/viswabharathi-logo.jpg
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/vscode-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8e99b0e

Please sign in to comment.