blob: 739a5d110f99a7846ed4b8fcdb183bcd9b0bc0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import React from 'react'
import ScreenshotSection from './ScreenshotSection'
const ModelingSection = () => (
<ScreenshotSection
name="project"
title="Datacenter Simulation"
imageUrl="/img/screenshot-simulation.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 (Business Critical, Workflows, Machine Learning, Serverless,
etc.)
</li>
<li>Compare datacenter topologies using automated plots and visual summaries</li>
</ul>
</ScreenshotSection>
)
export default ModelingSection
|