import { useState } from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import ProjectTile from "./ProjectTile.jsx"; import PhotoHover from "./PhotoHover.jsx"; export default function Projects() { const [image, setImage] = useState(); const [open, setOpen] = useState(false); function openPhoto(image) { setImage(image); setOpen(true); } return (
Projects
Deploy and monitor MInecraft servers in your kubernetes cluster. Easily scales and provides a stateful experience to make managing multiple servers simple. Manage failing tests and silence unecessary alerts. Check the state of your services worldwide and improve developer confidence with a simple interface. Basic cloud file management built on React class components. Simple interface allows users to upload, delete, and multiple files. Visual replication of the website{" "} codepen.io {" "} webpage in 2020. Simple demonstration of css and html Simple media player built on javafx. Player supports media seeking, playback controls, and speed distortion. Voxel game built on a simple rendering engine written with JavaFX. Generate your terrain and form your ideal world by exploring and harvesting resources.
); }