summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js')
-rw-r--r--opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js b/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js
deleted file mode 100644
index 263590d5..00000000
--- a/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import classNames from 'classnames'
-import React from 'react'
-import { Row, Col } from 'reactstrap'
-import ContentSection from './ContentSection'
-import './ScreenshotSection.sass'
-
-const ScreenshotSection = ({ name, title, imageUrl, caption, imageIsRight, children }) => (
- <ContentSection name={name} title={title}>
- <Row>
- <Col
- xl="5"
- lg="5"
- md="5"
- sm="!2"
- className={classNames('text-left my-auto', {
- 'order-1': !imageIsRight,
- })}
- >
- {children}
- </Col>
- <Col xl="7" lg="7" md="7" sm="12">
- <img src={imageUrl} className="col-12 screenshot" alt={caption} />
- <Row className="text-muted justify-content-center">{caption}</Row>
- </Col>
- </Row>
- </ContentSection>
-)
-
-export default ScreenshotSection