Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SobennaStory committed Apr 23, 2024
1 parent 45b68b7 commit ed31471
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
2 changes: 1 addition & 1 deletion sobenfolio-frontend/src/app/components/Parallax.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Parallax() {
scrollTrigger: {
trigger: parallaxRef.current,
start: "top top",
end: "5000 bottom",
end: "2500 bottom",
scrub: true,
pin: true,
onUpdate: (self) => {
Expand Down
29 changes: 10 additions & 19 deletions sobenfolio-frontend/src/app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,33 +28,19 @@ const pixel = Pixelify_Sans({
const projectsData = [
{
id: 1,
title: "Bandwith Battlegrounds",
description: "A 2D Platformer game created with Unity",
image: "/images/projects/1.png",
tag: ["All", "Game"],
gitUrl: "/",
projectImages : [
'/images/projects/Bandwith1.png',
'/images/projects/Bandwith2.png',
'/images/projects/Bandwith3.png',
'/images/projects/Bandwith4.png',
]
},
{
id: 2,
title: "CAN Data Visualizer",
description: "A Data Visualizer created with Python",
description: "A vehicle kinematic data visualizer, with a corresponding published paper.",
image: "/images/projects/2.png",
tag: ["All"],
gitUrl: "https://github.com/jmscslgroup/drivesummary",
gitUrl: "https://ieeexplore.ieee.org/abstract/document/10485592",
projectImages : [
'/images/projects/Datavis1.png',
'/images/projects/Datavis2.png',
'/images/projects/Datavis3.png'
]
},
{
id: 3,
id: 2,
title: "Ekreb",
description: "A Word-guessing game made with React and Vite.",
image: "/images/projects/3.png",
Expand All @@ -67,12 +53,12 @@ const projectsData = [
]
},
{
id: 4,
id: 3,
title: "SobStore",
description: "A inventory management app. Only frontend. Does not persist between reloads.",
image: "/images/projects/4.png",
tag: ["All", "Web"],
gitUrl: "https://sobstore.vercel.app/",
gitUrl: "https://www.youtube.com/watch?v=N2jZAoTZ0oc&list=PLAqwaEpjgfVHvp4Zo8qynWMX_-8NejPwu&index=2",
projectImages : [
'/images/projects/sobstore1.png',
'/images/projects/sobstore2.png',
Expand Down Expand Up @@ -175,6 +161,11 @@ const ProjectsSection = () => {
<p className={`${orbitron.className} text-[#ADB7BE] text-center text-sm sm:text-sm mb-6 lg:text-sm`}>
<EyeIcon className="inline-block w-8 h-8"/> To see fun pictures.
</p>
<p className={`${orbitron.className} text-[rgb(192,174,125)] text-center text-sm sm:text-sm mb-6 lg:text-sm`}>
<a href="https://www.youtube.com/watch?v=N7RIxD4vraM&list=PLAqwaEpjgfVHvp4Zo8qynWMX_-8NejPwu&index=1" target="_blank" rel="noopener noreferrer">
Click for project demos.
</a>
</p>

<motion.div
key={currentCardIndex}
Expand Down

0 comments on commit ed31471

Please sign in to comment.