Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "change for froggit colors and fonts"

Merged Hugues requested to merge 21-change-for-froggit-colors-and-fonts into master
Files
47
/* eslint-disable linebreak-style */
/* eslint-disable linebreak-style */
 
/* eslint react/prop-types: 0 */
import React from "react";
import React from "react";
import clsx from "clsx";
import clsx from "clsx";
import styles from "./HomepageFeatures.module.css";
import styles from "./HomepageFeatures.module.css";
// eslint-disable-next-line no-unused-vars
const FeatureList = [
const FeatureList = [
{
{
title: "1. Le Lab 🧪",
title: "1. Le Lab 🧪",
@@ -43,16 +44,18 @@ const FeatureList = [
@@ -43,16 +44,18 @@ const FeatureList = [
},
},
];
];
// eslint-disable-next-line
function Feature({Svg, title, description}) {
function Feature({Svg, title, description}) {
return (
return (
<div className={clsx("hero hero--primary text--center padding-horiz--md", styles.featureContainer)}>
<div className={clsx("hero container text--center padding-horiz--md")}>
<div className={styles.featureSvg}>
<div className="row">
<Svg className={styles.svg} alt={title} />
<div className={"col col--5"}>
</div>
<Svg className={styles.svg} alt={title} />
<div className={styles.featureText}>
</div>
<h3>{title}</h3>
<div className={"col col--5"}>
<p>{description}</p>
<h3>{title}</h3>
 
<p>{description}</p>
 
</div>
</div>
</div>
</div>
</div>
);
);
Loading