import React from "react"; import clsx from "clsx"; import styles from "./styles.module.css"; const FeatureList = [ { title: "About Me", description: (

I'm working in Red Hat in the Packit team and studying at FI MUNI while also tutoring some courses there.

), }, { title: "Content", description: ( <> On this page you can find my blog or unofficial materials I have written over the course of teaching multiple courses at the FI. ), }, { title: "This web", description: ( <> This content can be found as a source at{" "} GitLab or{" "} FI GitLab. And you can find it deployed on {" "} aisa or{" "} poincare. ), }, ]; function Feature({ title, description }) { return (

{title}

{description}

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