summaryrefslogtreecommitdiff
path: root/frontend/src/components/home/SimulationSection.js
blob: e7a02068c230cdab3a00e079b74242ca49df72e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from 'react'
import ScreenshotSection from './ScreenshotSection'

const ModelingSection = () => (
    <ScreenshotSection
        name="simulation"
        title="Datacenter Simulation"
        imageUrl="/img/screenshot-simulation-zoom.png"
        caption="Running an experiment in OpenDC"
        imageIsRight={false}
    >
        <h3>Working with OpenDC:</h3>
        <ul>
            <li>Seamlessly switch between construction and simulation modes</li>
            <li>Choose one of several predefined workloads (Big Data, Bag of Tasks, Hadoop, etc.)</li>
            <li>Play, pause, and skip around the informative simulation timeline</li>
            <li>Visualize and demo live</li>
        </ul>
    </ScreenshotSection>
)

export default ModelingSection