diff --git a/src/components/sections/ProjectCard.jsx b/src/components/sections/ProjectCard.jsx index 922f408..b595023 100644 --- a/src/components/sections/ProjectCard.jsx +++ b/src/components/sections/ProjectCard.jsx @@ -4,10 +4,10 @@ import PropTypes from "prop-types"; const ProjectCard = ({ title, liveUrl, gitUrl, children }) => { const getLiveUrl = () => { - if (liveUrl.length == 0) { + if (liveUrl.length == 1) { return ( -
- Live +
+ No Live :(
); } diff --git a/src/components/sections/Projects.jsx b/src/components/sections/Projects.jsx index 5270bd1..0344fcf 100644 --- a/src/components/sections/Projects.jsx +++ b/src/components/sections/Projects.jsx @@ -49,13 +49,25 @@ const Projects = () => {

+ title="Disser" + gitUrl="https://github.com/JohnCosta27/Disser-RoyalHackaway2022" + > +

+ Royal Hackathon Project 2022. A real time social media which + allows users to communicate with each other in real time. It also + involves GPT-3 bots which communicate with each other and the + users. +

+
+ title="Snake" + gitUrl="https://github.com/JohnCosta27/Snake" + liveUrl="https://johncosta27.github.io/Snake/" + > +

+ My first big project. A classic snake game that adapts to the screen size you are on. +

+