From fdc3200ef4718eb98bd8a713f956222a9bf85ac9 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 4 Aug 2022 16:40:44 +0200 Subject: docs: Add initial version of Docusaurus based docs This change updates the repository with a new Docusaurus-based documentation website. This allows us to create our documentation using Markdown, MDX and React. This will serve as the main entry point for users visiting https://opendc.org. The actual OpenDC application will be moved to https://app.opendc.org. --- site/src/components/HomepageFeatures/index.js | 71 +++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 site/src/components/HomepageFeatures/index.js (limited to 'site/src/components/HomepageFeatures/index.js') diff --git a/site/src/components/HomepageFeatures/index.js b/site/src/components/HomepageFeatures/index.js new file mode 100644 index 00000000..5beee68d --- /dev/null +++ b/site/src/components/HomepageFeatures/index.js @@ -0,0 +1,71 @@ +import React from 'react' +import clsx from 'clsx' +import styles from './styles.module.css' + +const FeatureList = [ + { + title: 'Easy to Use', + Svg: () => Building a datacenter in OpenDC, + description: ( + <> + OpenDC is designed from the ground up to be easily installed and used via its online interface to get + your experiments running quickly. + + ), + }, + { + title: 'Versatile Models', + Svg: () => ( + Explore alternative scenarios with OpenDC + ), + description: ( + <> + Explore scenarios around emerging datacenter technologies such as cloud computing,{' '} + serverless computing, big data, and machine learning. + + ), + }, + { + title: 'Simplified Analysis', + Svg: () => ( + Automated plots and visual summaries generated by OpenDC + ), + description: ( + <> + Investigate datacenter performance using the automated plots and visual summaries provided + out-of-the-box by OpenDC. + + ), + }, +] + +function Feature({ Svg, title, description }) { + return ( +
+
+ +
+
+

{title}

+

{description}

+
+
+ ) +} + +export default function HomepageFeatures() { + return ( +
+
+
+ {FeatureList.map((props, idx) => ( + + ))} +
+
+
+ ) +} -- cgit v1.2.3