First commit
This commit is contained in:
parent
d8275ce235
commit
7ae4644893
22 changed files with 18552 additions and 0 deletions
61
src/components/HomepageFeatures/index.js
Normal file
61
src/components/HomepageFeatures/index.js
Normal file
|
@ -0,0 +1,61 @@
|
|||
import clsx from 'clsx';
|
||||
import Heading from '@theme/Heading';
|
||||
import styles from './styles.module.css';
|
||||
|
||||
const FeatureList = [
|
||||
{
|
||||
title: 'Save water!',
|
||||
Svg: require('@site/static/img/water.svg').default,
|
||||
description: (
|
||||
<>
|
||||
You can save water and have fun!
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Resource education',
|
||||
Svg: require('@site/static/img/resources.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Learn about using resources
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Build it yourself',
|
||||
Svg: require('@site/static/img/build.svg').default,
|
||||
description: (
|
||||
<>
|
||||
You don't need to buy it, just build it!
|
||||
</>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
function Feature({Svg, title, description}) {
|
||||
return (
|
||||
<div className={clsx('col col--4')}>
|
||||
<div className="text--center">
|
||||
<Svg className={styles.featureSvg} role="img" />
|
||||
</div>
|
||||
<div className="text--center padding-horiz--md">
|
||||
<Heading as="h3">{title}</Heading>
|
||||
<p>{description}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default function HomepageFeatures() {
|
||||
return (
|
||||
<section className={styles.features}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
{FeatureList.map((props, idx) => (
|
||||
<Feature key={idx} {...props} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
11
src/components/HomepageFeatures/styles.module.css
Normal file
11
src/components/HomepageFeatures/styles.module.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
.features {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 5rem 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.featureSvg {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue