- I'm Navy, or Erik. I'm a 20-something year old software developer from Finland. I don't really do design™, so excuse the oddly themed page (it's also probably unfinished).
+ I'm Navy, or Erik. I'm a 20-something year old software developer from Finland.
+ I don't really do design™, so excuse the oddly themed page (it's also probably unfinished).
@@ -37,6 +38,30 @@ const Home = () => {
P.S. corgis r amazing
+
+
+
+
Languages, environments, tools etc I can work with
+
+
+ I can work with various ...things™
+ I'm most proficient with JS within the Node environment as it's the one I've worked with the longest,
+ though I can work well within any JS environment now. When working on Node projects I most commonly use MongoDB and MariaDB if needed. Web apis I write using Express.
+
+
+
+ I try to containerise most of my latest projects with docker. Metrics I do with Prometheus if suitable.
+
+
+
+ I've also dabbled in writing the occasional C# and Java project,
+ I can hold my own when using these languages but would not consider myself proficient with them.
+
+
+
+ I probably forgot something, so chances are this probably isn't everything.
+
+
While you're here...
@@ -51,7 +76,7 @@ const Home = () => {
- I would say I made this site with love but my relationship with css is a bit more complicated than that.
+ I would say I made this site with love but my relationship with css is a bit more complicated than that. Made in the MERN stack.
diff --git a/client/src/pages/Panel.js b/client/src/pages/Panel.js
index 65ea9fe..120d9a2 100644
--- a/client/src/pages/Panel.js
+++ b/client/src/pages/Panel.js
@@ -1,6 +1,7 @@
import React, { useEffect, useState } from "react";
import '../css/Panel.css';
import Dropdown from "../Structures/Dropdown";
+import Popup from "../Structures/Popup";
const User = ({user}) => {
@@ -15,21 +16,30 @@ const User = ({user}) => {
permissions[perm] = value;
};
+ const [popup, togglePopup] = useState(false);
+
+ const onClick = () => {
+ togglePopup(!popup);
+ };
+
return (