26 lines
703 B
JavaScript
26 lines
703 B
JavaScript
|
import PropTypes from "prop-types";
|
||
|
import React from "react";
|
||
|
import styles from "./modules/CaseSection.module.css";
|
||
|
import Section from "./Section";
|
||
|
import CaseCard from "./CaseCard";
|
||
|
|
||
|
export default function CaseSection(props) {
|
||
|
return (
|
||
|
<Section>
|
||
|
<div className={styles.bg} />
|
||
|
<div className={styles.content}>
|
||
|
<h1 className={styles.title}>Case Studies</h1>
|
||
|
<div className={styles.cardRow}>
|
||
|
{props.caseStudies.map((study) => (
|
||
|
<CaseCard key={study.title} study={props.caseStudies[0]} />
|
||
|
))}
|
||
|
</div>
|
||
|
</div>
|
||
|
</Section>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
CaseSection.propTypes = {
|
||
|
caseStudies: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||
|
};
|