From dceed47c17241a25b58437a9772cc418551ac30a Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 9 May 2021 11:11:14 +0200 Subject: ui: Update screenshots of OpenDC user-interface --- README.md | 4 ++-- docs/images/component-diagram.png | Bin 0 -> 39965 bytes docs/images/opendc-component-diagram.png | Bin 39965 -> 0 bytes docs/images/opendc-frontend-construction.png | Bin 76461 -> 0 bytes docs/images/opendc-frontend-simulation-zoom.png | Bin 100583 -> 0 bytes docs/images/opendc-frontend-simulation.png | Bin 96351 -> 0 bytes docs/images/screenshot-construction.png | Bin 0 -> 275103 bytes docs/images/screenshot-simulation.png | Bin 0 -> 291836 bytes .../public/img/screenshot-construction.png | Bin 76461 -> 275103 bytes .../public/img/screenshot-simulation-zoom.png | Bin 100583 -> 0 bytes .../public/img/screenshot-simulation.png | Bin 0 -> 291836 bytes .../src/components/home/ScreenshotSection.js | 21 +++++++++++++-------- .../src/components/home/ScreenshotSection.sass | 1 - .../src/components/home/SimulationSection.js | 10 ++++++---- 14 files changed, 21 insertions(+), 15 deletions(-) create mode 100644 docs/images/component-diagram.png delete mode 100644 docs/images/opendc-component-diagram.png delete mode 100644 docs/images/opendc-frontend-construction.png delete mode 100644 docs/images/opendc-frontend-simulation-zoom.png delete mode 100644 docs/images/opendc-frontend-simulation.png create mode 100644 docs/images/screenshot-construction.png create mode 100644 docs/images/screenshot-simulation.png delete mode 100644 opendc-web/opendc-web-ui/public/img/screenshot-simulation-zoom.png create mode 100644 opendc-web/opendc-web-ui/public/img/screenshot-simulation.png diff --git a/README.md b/README.md index 7fa141ce..904fb206 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,12 @@ Collaborative Datacenter Simulation and Exploration for Everybody OpenDC is a free and open-source platform for datacenter simulation aimed at both research and education. -![Datacenter construction in OpenDC](docs/images/opendc-frontend-construction.png) +![Datacenter construction in OpenDC](docs/images/screenshot-construction.png) Users can construct datacenters (see above) and define portfolios of scenarios (experiments) to see how these datacenters perform under different workloads and schedulers (see below). -![Datacenter simulation in OpenDC](docs/images/opendc-frontend-simulation.png) +![Datacenter simulation in OpenDC](docs/images/screenshot-simulation.png) The simulator is accessible both as a ready-to-use website hosted by us at [opendc.org](https://opendc.org), and as source code that users can run locally on their own machine, through Docker. diff --git a/docs/images/component-diagram.png b/docs/images/component-diagram.png new file mode 100644 index 00000000..312ca72a Binary files /dev/null and b/docs/images/component-diagram.png differ diff --git a/docs/images/opendc-component-diagram.png b/docs/images/opendc-component-diagram.png deleted file mode 100644 index 312ca72a..00000000 Binary files a/docs/images/opendc-component-diagram.png and /dev/null differ diff --git a/docs/images/opendc-frontend-construction.png b/docs/images/opendc-frontend-construction.png deleted file mode 100644 index 223e8d48..00000000 Binary files a/docs/images/opendc-frontend-construction.png and /dev/null differ diff --git a/docs/images/opendc-frontend-simulation-zoom.png b/docs/images/opendc-frontend-simulation-zoom.png deleted file mode 100644 index d7744926..00000000 Binary files a/docs/images/opendc-frontend-simulation-zoom.png and /dev/null differ diff --git a/docs/images/opendc-frontend-simulation.png b/docs/images/opendc-frontend-simulation.png deleted file mode 100644 index bbf4cbd6..00000000 Binary files a/docs/images/opendc-frontend-simulation.png and /dev/null differ diff --git a/docs/images/screenshot-construction.png b/docs/images/screenshot-construction.png new file mode 100644 index 00000000..ea20a7c4 Binary files /dev/null and b/docs/images/screenshot-construction.png differ diff --git a/docs/images/screenshot-simulation.png b/docs/images/screenshot-simulation.png new file mode 100644 index 00000000..1bd989c7 Binary files /dev/null and b/docs/images/screenshot-simulation.png 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 index 223e8d48..ea20a7c4 100644 Binary files a/opendc-web/opendc-web-ui/public/img/screenshot-construction.png and b/opendc-web/opendc-web-ui/public/img/screenshot-construction.png differ diff --git a/opendc-web/opendc-web-ui/public/img/screenshot-simulation-zoom.png b/opendc-web/opendc-web-ui/public/img/screenshot-simulation-zoom.png deleted file mode 100644 index d7744926..00000000 Binary files a/opendc-web/opendc-web-ui/public/img/screenshot-simulation-zoom.png and /dev/null 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 new file mode 100644 index 00000000..1bd989c7 Binary files /dev/null and b/opendc-web/opendc-web-ui/public/img/screenshot-simulation.png differ diff --git a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js b/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js index c987d5d0..263590d5 100644 --- a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js +++ b/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js @@ -1,23 +1,28 @@ import classNames from 'classnames' import React from 'react' +import { Row, Col } from 'reactstrap' import ContentSection from './ContentSection' import './ScreenshotSection.sass' const ScreenshotSection = ({ name, title, imageUrl, caption, imageIsRight, children }) => ( -
-
+ {children} -
-
+ + {caption} -
{caption}
-
-
+ {caption} + +
) diff --git a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.sass b/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.sass index 2f454cb4..6b1a6ec4 100644 --- a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.sass +++ b/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.sass @@ -1,5 +1,4 @@ .screenshot - outline: 2px black solid padding-left: 0 padding-right: 0 margin-bottom: 5px diff --git a/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js b/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js index b0244cb5..739a5d11 100644 --- a/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js +++ b/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js @@ -5,16 +5,18 @@ const ModelingSection = () => (

Working with OpenDC:

) -- cgit v1.2.3