import React from "react" import { makeStyles } from "@material-ui/core/styles" import { Container, Typography, Grid } from "@material-ui/core" import Section from "@components/Section" import speedIcon from "./speed.svg" import responsiveIcon from "./responsive.svg" import securityIcon from "./security.svg" import intuitiveIcon from "./intuitive.svg" function MyPriorities() { const classes = useStyles() return (
My priorities Responsiveness Responsiveness I create websites that look good on all devices. Intuitiveness Intuitiveness An easy-to-use & user-friendly interface. Szybkość Performance Fast load times & lag free interaction. Security Security I use tried-and-tested tools and techniques that help me keep the website safe.
) } const useStyles = makeStyles(theme => ({ icon: { width: 128, height: 128, [theme.breakpoints.down("md")]: { width: 96, height: 96, }, }, container: { textAlign: "center", }, })) export default MyPriorities