import React from "react"; // nodejs library that concatenates classes import classNames from "classnames"; // @material-ui/core components import { makeStyles } from "@material-ui/core/styles"; // @material-ui/icons // core components import GridContainer from "components/Grid/GridContainer.js"; import GridItem from "components/Grid/GridItem.js"; import Button from "components/CustomButtons/Button.js"; import Card from "components/Card/Card.js"; import CardBody from "components/Card/CardBody.js"; import CardFooter from "components/Card/CardFooter.js"; import styles from "assets/jss/nextjs-material-kit/pages/landingPageSections/teamStyle.js"; import team1 from "assets/img/faces/avatar.jpg"; import team2 from "assets/img/faces/christian.jpg"; import team3 from "assets/img/faces/kendall.jpg"; const useStyles = makeStyles(styles); export default function TeamSection() { const classes = useStyles(); const imageClasses = classNames( classes.imgRaised, classes.imgRoundedCircle, classes.imgFluid ); return (

Here is our team

...

Gigi Hadid
Model

You can write here details about one of your team members. You can give more details about what they do. Feel free to add some links for people to be able to follow them outside the site.

...

Christian Louboutin
Designer

You can write here details about one of your team members. You can give more details about what they do. Feel free to add some links for people to be able to follow them outside the site.

...

Kendall Jenner
Model

You can write here details about one of your team members. You can give more details about what they do. Feel free to add some links for people to be able to follow them outside the site.

); }