blob: b0d53b95f0e2128cf0f60090a5ad96873d65cd2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import React from "react";
import ContentSection from "./ContentSection";
import "./SC18Section.css";
const SC18Section = () => (
<ContentSection name="sc18" title="OpenDC @ SC18">
<div className="text-center lead mt-3">
Our research on a reference architecture for datacenter scheduling will be presented at SC18 (Dallas, TX)! Join our presentation on
Wednesday, November 14, at 1:30pm, in the Cloud and Distributed Computing track.
</div>
<div className="text-center">
<a href="http://bit.ly/sc18-scheduling" className="btn btn-primary mt-4">
Read our Technical Report here
</a>
</div>
</ContentSection>
);
export default SC18Section;
|