From 829be3c973f5ca837431c3ca10909412b675e668 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 15 Jul 2021 15:10:04 +0200 Subject: refactor(ui): Extract OpenDC landing page from web interface This change extracts the landing page from the web interface in order to separate the development of the two. This allows the landing page to be developed independently of the actual OpenDC web application. --- .../src/components/home/SimulationSection.js | 66 ---------------------- 1 file changed, 66 deletions(-) delete mode 100644 opendc-web/opendc-web-ui/src/components/home/SimulationSection.js (limited to 'opendc-web/opendc-web-ui/src/components/home/SimulationSection.js') diff --git a/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js b/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js deleted file mode 100644 index 46ce6a35..00000000 --- a/opendc-web/opendc-web-ui/src/components/home/SimulationSection.js +++ /dev/null @@ -1,66 +0,0 @@ -import PropTypes from 'prop-types' -import React from 'react' -import Image from 'next/image' -import { Col, Row } from 'reactstrap' -import ContentSection from './ContentSection' - -const SimulationSection = ({ className }) => { - return ( - - - -

Working with OpenDC:

-
    -
  • Seamlessly switch between construction and simulation modes
  • -
  • - Choose one of several predefined workloads (Business Critical, Workflows, Machine Learning, - Serverless, etc.) -
  • -
  • Compare datacenter topologies using automated plots and visual summaries
  • -
- - - Running an experiment in OpenDC - Running an experiment in OpenDC - -
- - -

OpenDC's Simulator:

-
    -
  • Includes a detailed operational model of modern datacenters
  • -
  • - Support for emerging datacenter technologies around cloud computing,{' '} - serverless computing, big data, and machine learning -
  • -
- - - - OpenDC's Architecture - OpenDC's Architecture - -
-
- ) -} - -SimulationSection.propTypes = { - className: PropTypes.string, -} - -export default SimulationSection -- cgit v1.2.3