import React from 'react'; import { graphql, useStaticQuery } from 'gatsby'; import { makeStyles } from '@material-ui/core/styles'; import { Container, Typography, Grid } from '@material-ui/core'; import Section from '@components/Section'; function MyPriorities() { const classes = useStyles(); const data = useStaticQuery(graphql` { responsivenessIcon: file(base: { eq: "responsiveness.svg" }) { publicURL } securityIcon: file(base: { eq: "security.svg" }) { publicURL } speedIcon: file(base: { eq: "speed.svg" }) { publicURL } intuitivenessIcon: file(base: { eq: "intuitiveness.svg" }) { publicURL } } `); 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;