You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.1 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import { AiOutlineClockCircle } from "react-icons/ai";
const Hero = () => {
return (
<section>
<div className="mr-0 relative flex items-center bg-gray-50">
<div className="ml-[calc(50%-768px)] z-10">
<h1 className="relative left-1/3 leading-tight text-7xl font-bold italic text-slate-800">Эмоциональный интеллект</h1>
<div className="absolute bottom-3 flex items-center">
<p className="flex mr-4 items-center text-lg text-slate-800"><AiOutlineClockCircle/>: 2,5-3 часа</p>
<p><b>Доступные форматы:</b> онлайн</p>
</div>
</div>
<div className="basis-full h-[60vh]">
<StaticImage className='w-full h-[inherit]' src="../../../images/games/ei.jfif"></StaticImage>
</div>
</div>
</section>
)
}
export default Hero;