import React from 'react'; import { AiFillCheckCircle } from "react-icons/ai"; import { useStaticQuery, graphql } from "gatsby" import { StaticImage} from 'gatsby-plugin-image'; import { TypeAnimation } from 'react-type-animation'; import { motion } from "framer-motion" import { SlArrowDown } from "react-icons/sl"; import { Link as AnchorLink } from "react-scroll"; const Hero = ({...props}) => { const images = useStaticQuery(graphql` query { hero1: file(relativePath: {eq: "hero1.jpg"}) { childImageSharp { fluid(maxWidth: 2500, toFormat: WEBP) { ...GatsbyImageSharpFluid, } } }, hero2: file(relativePath: {eq: "hero2.jpg"}) { childImageSharp { fluid(maxWidth: 2500, toFormat: WEBP) { ...GatsbyImageSharpFluid, } } }, }`); return ( <>

Мы специализируемся на разработке и проведении деловых игр, тренингов, бизнес-симуляций, корпоративных мероприятий направленных на:

  • оценку
  • обучение
  • развитие
); } export default Hero;