diff --git a/README.md b/README.md
index bb5291c..4750022 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
# Container ToolKit
+
+
## Local setup and development
On a Mac/Linux/Windows you need Docker, Docker Compose installed. Optionally GCC to run make commands for convenience, or just run the commands from the Makefile by hand.
diff --git a/screenshots/ui.png b/screenshots/ui.png
new file mode 100644
index 0000000..b89da62
Binary files /dev/null and b/screenshots/ui.png differ
diff --git a/services/.DS_Store b/services/.DS_Store
deleted file mode 100644
index 2a559d6..0000000
Binary files a/services/.DS_Store and /dev/null differ
diff --git a/services/frontend/src/components/Canvas/Popover.tsx b/services/frontend/src/components/Canvas/Popover.tsx
new file mode 100644
index 0000000..0cf4048
--- /dev/null
+++ b/services/frontend/src/components/Canvas/Popover.tsx
@@ -0,0 +1,22 @@
+import { TrashIcon, PencilIcon } from "@heroicons/react/solid";
+export const Popover = ({
+ onEditClick,
+ onDeleteClick
+}: {
+ onEditClick: Function
+ onDeleteClick: Function
+}) => {
+ return (
+