diff --git a/src/GameProjects.jsx b/src/GameProjects.jsx index 8f0d13f..45b38c0 100644 --- a/src/GameProjects.jsx +++ b/src/GameProjects.jsx @@ -2,7 +2,6 @@ import { h, render, Component } from "preact"; import { Grid, Container, - Paper, Card, CardHeader, CardMedia, @@ -14,6 +13,7 @@ import { import Monq from "../static/images/Monq.jpg"; import Graphics from "../static/images/Graphics.png"; import NewGraphics from "../static/images/NewGraphics.png"; +import Code from "../static/images/code.png"; class GameProjects extends Component { constructor(props) { @@ -21,8 +21,7 @@ class GameProjects extends Component { this.content = [ { header: "Current Graphics Project", - subheader: `Personal Side Project - Programmer: C++, Opengl, - SDL`, + subheader: `Personal Side Project - Programmer: C++, Opengl, SDL`, image: NewGraphics, imageAltText: "Graphics", content: `I'm currently working on another graphics project as this is @@ -35,6 +34,19 @@ class GameProjects extends Component { buttonLink: "/graphics-blog", newtab: false }, + { + header: "Current Low Level Networking Project", + subheader: `Personal Side Project - Programmer: C, Sockets and Protobuf`, + image: Code, + imageAltText: "Networking Code", + content: `I'm currently working on another low level project as + interested in learning plain C and low level networking. I plan on + creating a mud that can potentially be used in conjunction with my + graphics project to create a multiplayer experience.`, + buttonText: "Visit Repo", + buttonLink: "https://github.com/WarwickNew/urchin", + newtab: false + }, { header: "Monq", subheader: `D-tail Entertainment - Programmer: Unreal Engine 4, C++, diff --git a/static/images/code.png b/static/images/code.png new file mode 100644 index 0000000..ddc6ccb Binary files /dev/null and b/static/images/code.png differ