summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/public
diff options
context:
space:
mode:
authorvincent van beek <vincent@vlogic.nl>2026-03-26 14:02:54 +0100
committerGitHub <noreply@github.com>2026-03-26 13:02:54 +0000
commit0ffde21b0337c606e2d0ece5bd5434a930a87dcd (patch)
tree4fd071728a8da6dcf3e6fc9fe9dca5a492100d34 /opendc-web/opendc-web-ui/public
parent8bb98c773bc982a0dab9cf9fb20d62f60a36a5d7 (diff)
Use Quarkus Quinoa for serving web UI (#391)
* refactor(web): Migrate to Quarkus 3 This commit updates the OpenDC web server to use Quarkus 3, which changes annotations to use the Jakarta namespace for annotations. * refactor(web): Configure runtime variables for web UI This commit updates the web UI to propagate runtime variables via the next-runtime-env package. Before, we would need to replace the variables in the generated sources by Next.js, next-runtime-env works by loading a JavaScript file when opening the OpenDC web UI which contains the configuration of the web app. * refactor(web): Migrate to Quarkus Quinoa This commit updates the OpenDC web server to make use of Quarkus Quinoa for serving the web UI. This allows us to deprecate the complex Quarkus extension for serving the web UI. * refactor(web): Move web UI into Quarkus web app This commit moves the web UI into the Quarkus web server module to ensure we follow Quarkus Quinoa's conventions. * refactor(web): Merge Quarkus extension into single module This commit merges the existing Quarkus extensions into a single module to prevent build complexity. * refactor(web): Migrate web proto to Java This commit migrates the web protocol to Java and removes the dependency on Jandex Gradle. * refactor(web): Migrate to Quarkus 3 This commit updates the OpenDC web server to use Quarkus 3, which changes annotations to use the Jakarta namespace for annotations. * enable DB schema migration on DEV server * webui is not needed anymore * remove MAINTAINERS is depricated * fix quarkus.quinoa properties * revert properties change, install npm in docker image to allow building the frontend * pin postgres version, this is a best practice. Fix some properties the old ones are depricated. Added properties for local testing * fix build error * :opendc-web:opendc-web-proto:spotlessApply * fix database schema --------- Co-authored-by: Fabian Mastenbroek <mail.fabianm@gmail.com>
Diffstat (limited to 'opendc-web/opendc-web-ui/public')
-rw-r--r--opendc-web/opendc-web-ui/public/favicon.icobin99678 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/humans.txt35
-rw-r--r--opendc-web/opendc-web-ui/public/img/avatar.svg18
-rw-r--r--opendc-web/opendc-web-ui/public/img/datacenter-drawing.pngbin207909 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/logo.pngbin2825 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/logo.svg191
-rw-r--r--opendc-web/opendc-web-ui/public/img/opendc-architecture.pngbin45056 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/opendc-timeline-v2.pngbin33460 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/aiosup.pngbin71879 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/evaneyk.pngbin89028 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.pngbin123006 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/gandreadis.pngbin76426 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/hhe.pngbin102718 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/jbosch.pngbin101618 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/jburley.pngbin328112 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.pngbin67796 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/loverweel.pngbin65866 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/sjounaid.pngbin94523 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.pngbin85159 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/portraits/wlai.pngbin72873 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/screenshot-construction.pngbin275103 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/screenshot-simulation.pngbin291836 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/stakeholders/Developer.pngbin11411 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/stakeholders/Manager.pngbin9946 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/stakeholders/Researcher.pngbin10984 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/stakeholders/Sales.pngbin10074 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/stakeholders/Student.pngbin12960 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/cpu-icon.pngbin4062 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/gpu-icon.pngbin2227 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/memory-icon.pngbin1980 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/rack-energy-icon.pngbin893 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/rack-space-icon.pngbin957 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/topology/storage-icon.pngbin4038 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/img/tudelft-icon.pngbin4387 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-ui/public/manifest.json15
-rw-r--r--opendc-web/opendc-web-ui/public/robots.txt3
36 files changed, 0 insertions, 262 deletions
diff --git a/opendc-web/opendc-web-ui/public/favicon.ico b/opendc-web/opendc-web-ui/public/favicon.ico
deleted file mode 100644
index c2f40a0d..00000000
--- a/opendc-web/opendc-web-ui/public/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/humans.txt b/opendc-web/opendc-web-ui/public/humans.txt
deleted file mode 100644
index dadcd530..00000000
--- a/opendc-web/opendc-web-ui/public/humans.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-/* TEAM */
-Benevolent Dictator for Life: Alexandru Iosup.
-Site: http://www.ds.ewi.tudelft.nl/~iosup/
-Twitter: aiosup.
-Location: Delft, Netherlands.
-
-Full-Stack Engineer: Georgios Andreadis.
-Site: https://github.com/gandreadis
-Location: Delft, Netherlands.
-
-Simulation Engineer: Fabian Mastenbroek.
-Site: https://github.com/fabianishere
-Location: Delft, Netherlands.
-
-Simulation Engineer: Jacob Burley.
-Site: https://github.com/jc0b
-Location: Amsterdam, Netherlands.
-
-Backend Engineer: Leon Overweel.
-Site: http://leonoverweel.com/
-Twitter: layon_overwhale.
-Location: Delft, Netherlands.
-
-Simulation Engineer: Matthijs Bijman.
-Site: https://github.com/MDBijman
-Location: Delft, Netherlands.
-
-/* THANKS */
-Executive Producer: Vincent van Beek.
-Executive Producer: Tim Hegeman.
-
-/* SITE */
-Standards: HTML5, Sass, ES6
-Components: React.js, Redux, create-react-app, react-konva
-Software: WebStorm, Vim, Visual Studio
diff --git a/opendc-web/opendc-web-ui/public/img/avatar.svg b/opendc-web/opendc-web-ui/public/img/avatar.svg
deleted file mode 100644
index 73726f9b..00000000
--- a/opendc-web/opendc-web-ui/public/img/avatar.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
-<style type="text/css">
- .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#F0F0F0;}
- .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#D2D2D2;}
- .st2{fill:#B8BBBE;}
- .st3{fill:#D2D2D2;}
-</style>
-<rect class="st0" width="36" height="36"/>
-<path class="st1" d="M17.7,20.1c-3.5,0-6.4-2.9-6.4-6.4s2.9-6.4,6.4-6.4s6.4,2.9,6.4,6.4S21.3,20.1,17.7,20.1z"/>
-<path class="st2" d="M13.3,36l0-6.7c-2,0.4-2.9,1.4-3.1,3.5L10.1,36H13.3z"/>
-<path class="st3" d="M10.1,36l0.1-3.2c0.2-2.1,1.1-3.1,3.1-3.5l0,6.7h9.4l0-6.7c2,0.4,2.9,1.4,3.1,3.5l0.1,3.2h4.7
- c-0.4-3.9-1.3-9-2.9-11c-1.1-1.4-2.3-2.2-3.5-2.6s-1.8-0.6-6.3-0.6s-6.1,0.7-6.1,0.7c-1.2,0.4-2.4,1.2-3.4,2.6
- C6.7,27,5.8,32.2,5.4,36H10.1z"/>
-<path class="st2" d="M25.9,36l-0.1-3.2c-0.2-2.1-1.1-3.1-3.1-3.5l0,6.7H25.9z"/>
-</svg>
diff --git a/opendc-web/opendc-web-ui/public/img/datacenter-drawing.png b/opendc-web/opendc-web-ui/public/img/datacenter-drawing.png
deleted file mode 100644
index ec2b7398..00000000
--- a/opendc-web/opendc-web-ui/public/img/datacenter-drawing.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/logo.png b/opendc-web/opendc-web-ui/public/img/logo.png
deleted file mode 100644
index d743038b..00000000
--- a/opendc-web/opendc-web-ui/public/img/logo.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/logo.svg b/opendc-web/opendc-web-ui/public/img/logo.svg
deleted file mode 100644
index 5283a034..00000000
--- a/opendc-web/opendc-web-ui/public/img/logo.svg
+++ /dev/null
@@ -1,191 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4.3656249mm"
- height="5.4239674mm"
- viewBox="0 0 4.3656249 5.4239674"
- version="1.1"
- id="svg4738"
- inkscape:version="0.92.1 r15371"
- sodipodi:docname="opendc.svg">
- <defs
- id="defs4732" />
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="22.4"
- inkscape:cx="-5.0874286"
- inkscape:cy="6.401307"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:window-width="1920"
- inkscape:window-height="1027"
- inkscape:window-x="-8"
- inkscape:window-y="-8"
- inkscape:window-maximized="1" />
- <metadata
- id="metadata4735">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(-16.538532,-146.52225)">
- <g
- transform="matrix(0.26458333,0,0,0.26458333,-15.13354,-112.7517)"
- id="g4333"
- inkscape:export-filename="h:\Desktop\logo.png"
- inkscape:export-xdpi="561.54816"
- inkscape:export-ydpi="561.54816">
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- style="fill:#48a1cd;fill-opacity:1;stroke:none"
- d="m 119.95547,988.18306 8,4 v -4 l -8,-4 z"
- id="path4052-1-2-8"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- style="fill:#82d0e7;fill-opacity:1;stroke:none"
- d="m 127.95547,988.18306 v 4 l 8.00001,-4 v -4 z"
- id="path4054-4-9-2"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- style="fill:#82d0e7;fill-opacity:1;stroke:none"
- d="m 119.95547,984.18306 8,-4 8.00001,4 -8.00001,4 z"
- id="path4056-2-1-5"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- inkscape:connector-curvature="0"
- id="path4048-1-9"
- d="m 119.95547,992.18306 8,4 v -4 l -8,-4 z"
- style="fill:#d1af2e;fill-opacity:1;stroke:none" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- inkscape:connector-curvature="0"
- id="path4050-7-2"
- d="m 127.95546,992.18306 v 4 l 8.00001,-4 v -4 z"
- style="fill:#edd667;fill-opacity:1;stroke:none" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:#df6f20;fill-opacity:1;stroke:none"
- d="m 119.95547,996.18306 8,4.00004 v -4.00004 l -8,-4 z"
- id="path3883-9-9-8"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:#ed9c67;fill-opacity:1;stroke:none"
- d="m 127.95547,996.18306 v 4.00004 l 8,-4.00004 v -4 z"
- id="path3885-8-9-1"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- d="m 119.95547,984.18306 8,-4 8,4 -8,4 z"
- id="path3893-6-0-8"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 119.95547,984.18306 v 4 l 8,4 8,-4 v -4"
- id="path3895-2-6-1"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 127.95547,988.18306 v 12.00004"
- id="path3897-3-2-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- inkscape:connector-curvature="0"
- id="path3899-8-1-7"
- d="m 119.95547,988.18306 v 4 l 8,4 8,-4 v -4"
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\comparison.png"
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- d="m 119.95547,992.18306 v 4 l 8,4.00004 8,-4.00004 v -4"
- id="path3901-5-6-1"
- inkscape:connector-curvature="0" />
- <circle
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- transform="matrix(1.0403949,-0.44307824,0.3060712,0.9369482,-235.62413,33.696703)"
- id="path3906-6-2-4-1-2"
- style="fill:#000000;fill-opacity:1;stroke:none"
- cx="43.5"
- cy="1044.8622"
- r="0.5" />
- <circle
- inkscape:export-ydpi="1307.2168"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- transform="matrix(1.0403949,-0.44307824,0.3060712,0.9369482,-235.62413,37.696663)"
- id="path3910-3-0-1-9-1"
- style="fill:#000000;fill-opacity:1;stroke:none"
- cx="43.5"
- cy="1044.8622"
- r="0.5" />
- <circle
- style="fill:#000000;fill-opacity:1;stroke:none"
- id="path4108-7-3-6"
- transform="matrix(1.0403949,-0.44307824,0.3060712,0.9369482,-235.62413,29.696659)"
- inkscape:export-filename="h:\Desktop\stackv2.png"
- inkscape:export-xdpi="1307.2168"
- inkscape:export-ydpi="1307.2168"
- cx="43.5"
- cy="1044.8622"
- r="0.5" />
- </g>
- </g>
-</svg>
diff --git a/opendc-web/opendc-web-ui/public/img/opendc-architecture.png b/opendc-web/opendc-web-ui/public/img/opendc-architecture.png
deleted file mode 100644
index e0bf8e9b..00000000
--- a/opendc-web/opendc-web-ui/public/img/opendc-architecture.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/opendc-timeline-v2.png b/opendc-web/opendc-web-ui/public/img/opendc-timeline-v2.png
deleted file mode 100644
index 0b2821c4..00000000
--- a/opendc-web/opendc-web-ui/public/img/opendc-timeline-v2.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/aiosup.png b/opendc-web/opendc-web-ui/public/img/portraits/aiosup.png
deleted file mode 100644
index d2019b4d..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/aiosup.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png b/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png
deleted file mode 100644
index 011c1627..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/evaneyk.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png b/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png
deleted file mode 100644
index 218b1a6f..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/fmastenbroek.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/gandreadis.png b/opendc-web/opendc-web-ui/public/img/portraits/gandreadis.png
deleted file mode 100644
index 96a3abda..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/gandreadis.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/hhe.png b/opendc-web/opendc-web-ui/public/img/portraits/hhe.png
deleted file mode 100644
index 4891c7f5..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/hhe.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png b/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png
deleted file mode 100644
index c76e1fab..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/jbosch.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/jburley.png b/opendc-web/opendc-web-ui/public/img/portraits/jburley.png
deleted file mode 100644
index d2691659..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/jburley.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png b/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png
deleted file mode 100644
index 6fbc8472..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/lfdversluis.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/loverweel.png b/opendc-web/opendc-web-ui/public/img/portraits/loverweel.png
deleted file mode 100644
index 85865977..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/loverweel.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png b/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png
deleted file mode 100644
index 41878161..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/sjounaid.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png b/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png
deleted file mode 100644
index 4c8b3311..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/vvanbeek.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/portraits/wlai.png b/opendc-web/opendc-web-ui/public/img/portraits/wlai.png
deleted file mode 100644
index c758846d..00000000
--- a/opendc-web/opendc-web-ui/public/img/portraits/wlai.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/screenshot-construction.png b/opendc-web/opendc-web-ui/public/img/screenshot-construction.png
deleted file mode 100644
index ea20a7c4..00000000
--- a/opendc-web/opendc-web-ui/public/img/screenshot-construction.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/screenshot-simulation.png b/opendc-web/opendc-web-ui/public/img/screenshot-simulation.png
deleted file mode 100644
index 1bd989c7..00000000
--- a/opendc-web/opendc-web-ui/public/img/screenshot-simulation.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/stakeholders/Developer.png b/opendc-web/opendc-web-ui/public/img/stakeholders/Developer.png
deleted file mode 100644
index d2638e6c..00000000
--- a/opendc-web/opendc-web-ui/public/img/stakeholders/Developer.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/stakeholders/Manager.png b/opendc-web/opendc-web-ui/public/img/stakeholders/Manager.png
deleted file mode 100644
index 92db7459..00000000
--- a/opendc-web/opendc-web-ui/public/img/stakeholders/Manager.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/stakeholders/Researcher.png b/opendc-web/opendc-web-ui/public/img/stakeholders/Researcher.png
deleted file mode 100644
index d87edd39..00000000
--- a/opendc-web/opendc-web-ui/public/img/stakeholders/Researcher.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/stakeholders/Sales.png b/opendc-web/opendc-web-ui/public/img/stakeholders/Sales.png
deleted file mode 100644
index 5b7c3a72..00000000
--- a/opendc-web/opendc-web-ui/public/img/stakeholders/Sales.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/stakeholders/Student.png b/opendc-web/opendc-web-ui/public/img/stakeholders/Student.png
deleted file mode 100644
index a4900303..00000000
--- a/opendc-web/opendc-web-ui/public/img/stakeholders/Student.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/cpu-icon.png b/opendc-web/opendc-web-ui/public/img/topology/cpu-icon.png
deleted file mode 100644
index 07cfbd31..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/cpu-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/gpu-icon.png b/opendc-web/opendc-web-ui/public/img/topology/gpu-icon.png
deleted file mode 100644
index 55d4fb05..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/gpu-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/memory-icon.png b/opendc-web/opendc-web-ui/public/img/topology/memory-icon.png
deleted file mode 100644
index 36e8a44e..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/memory-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/rack-energy-icon.png b/opendc-web/opendc-web-ui/public/img/topology/rack-energy-icon.png
deleted file mode 100644
index 1088c61b..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/rack-energy-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/rack-space-icon.png b/opendc-web/opendc-web-ui/public/img/topology/rack-space-icon.png
deleted file mode 100644
index 387d7ea6..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/rack-space-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/topology/storage-icon.png b/opendc-web/opendc-web-ui/public/img/topology/storage-icon.png
deleted file mode 100644
index 7a39cb6f..00000000
--- a/opendc-web/opendc-web-ui/public/img/topology/storage-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/img/tudelft-icon.png b/opendc-web/opendc-web-ui/public/img/tudelft-icon.png
deleted file mode 100644
index a7a2d56a..00000000
--- a/opendc-web/opendc-web-ui/public/img/tudelft-icon.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-ui/public/manifest.json b/opendc-web/opendc-web-ui/public/manifest.json
deleted file mode 100644
index adb82218..00000000
--- a/opendc-web/opendc-web-ui/public/manifest.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "short_name": "OpenDC",
- "name": "OpenDC",
- "icons": [
- {
- "src": "favicon.ico",
- "sizes": "16x16",
- "type": "image/png"
- }
- ],
- "start_url": "./index.html",
- "display": "standalone",
- "theme_color": "#00A6D6",
- "background_color": "#eeeeee"
-}
diff --git a/opendc-web/opendc-web-ui/public/robots.txt b/opendc-web/opendc-web-ui/public/robots.txt
deleted file mode 100644
index 1c6094ce..00000000
--- a/opendc-web/opendc-web-ui/public/robots.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-User-agent: *
-Disallow: /projects/
-Disallow: /profile/