Skip to content

Commit

Permalink
updated projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrunix committed Jan 10, 2024
1 parent 8cf5018 commit 4a9ec6a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
Binary file added public/images/projects/survivors.gif
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 public/images/projects/survivors1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/app/components/HeroSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const HeroSection = () => {
1000,
"Eager To Learn",
1000,
"Making Games",
1000,
]}
wrapper="span"
speed={30}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/ProjectCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ProjectCard = ({ imgUrl, title, description, gitUrl, previewUrl }) => {
<div>
<div
className="h-52 md:h-72 rounded-t-xl relative group"
style={{ background: `url(${imgUrl})`, backgroundSize: "cover", backgroundPosition: "center" }}
style={{ background: `url(${imgUrl})`, backgroundSize: "contain", backgroundPosition: "center", backgroundRepeat: "no-repeat" }}
>
<div className="overlay items-center justify-center absolute top-0 left-0 w-full h-full bg-[#181818] bg-opacity-0 hidden group-hover:flex group-hover:bg-opacity-80 transition-all duration-500 ">
<Link
Expand Down
9 changes: 9 additions & 0 deletions src/app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ const projectsData = [
gitUrl: "https://github.com/Pyrunix/system-monitoring-tool",
previewUrl: "/",
},
{
id: 6,
title: "Magic Survivors",
description: "Inspired by the game 'Vampire Survivors', a passion project (still in progress) about fighting increasingly difficult hordes of enemies",
image: "/images/projects/survivors1.gif",
tag: ["All", "Game"],
gitUrl: "/",
previewUrl: "/",
},
];

const ProjectsSection = () => {
Expand Down

0 comments on commit 4a9ec6a

Please sign in to comment.