summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/home/ScreenshotSection.js
blob: 9673b7b7e892d85984a8613ff40fa605eef6326e (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
25
26
27
28
import React from 'react'
import Image from 'next/image'
import { Row, Col } from 'reactstrap'
import ContentSection from './ContentSection'
import { screenshot } from './ScreenshotSection.module.scss'

const ScreenshotSection = ({ className, name, title, imageUrl, caption, imageIsRight, children }) => (
    <ContentSection name={name} title={title} className={className}>
        <Row>
            <Col xl="5" lg="5" md="5" sm="12" className={`text-left my-auto ${!imageIsRight ? 'order-1' : ''}`}>
                {children}
            </Col>
            <Col xl="7" lg="7" md="7" sm="12">
                <Image
                    src={imageUrl}
                    className={`col-12 ${screenshot}`}
                    layout="intrinsic"
                    width={635}
                    height={419}
                    alt={caption}
                />
                <div className="row text-muted justify-content-center">{caption}</div>
            </Col>
        </Row>
    </ContentSection>
)

export default ScreenshotSection