import React from "react"; import clsx from "clsx"; import styles from "./styles.module.css"; const FeatureList = [ { title: "Content", description: ( <> On this page you can find unofficial materials I have written over the course of teaching multiple courses at the FI. ), }, { title: "Source", description: ( <> This content can be found as a source at{" "} GitLab or{" "} FI GitLab. ), }, { title: "Deployment", description: ( <> This content is also deployed on{" "} aisa or{" "} poincare. ), }, ]; function Feature({ title, description }) { return (

{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }