import React from 'react' import styled from 'styled-components' import { FaAws, FaGithub } from 'react-icons/fa' import LandingButton from '../components/Button/Link' import Logo from '../../assets/logo/logo-dark.svg' import { screenSizes } from '../constants' const Container = styled.div` background-color: #f9f9f9; padding: 100px; @media (max-width: ${screenSizes.s}px) { padding: 100px 30px; } ` const Wrapper = styled.div` display: flex; ` const TextContainer = styled.div` flex: 1; padding-right: 50px; @media (max-width: ${screenSizes.s}px) { padding-right: 0; } ` const LogoContainer = styled.div` padding-left: 50px; display: flex; flex: 1; justify-content: center; align-items: center; @media (max-width: ${screenSizes.m}px) { display: none; } ` const TitleWrapper = styled.div` margin-bottom: 50px; ` const Title = styled.p` color: ${(props) => props.color || '#000000'}; font-size: 48px; font-weight: 600; margin: 0; ` const DescriptionWrapper = styled.div` margin-bottom: 50px; ` type DescriptionTextProps = { marginBottom?: string } const DescriptionText = styled.p` font-size: 22px; color: #000000; margin: 0 0 ${(props) => props.marginBottom || '0'} 0; ` const IntroductionSection = () => ( Amplify Video Live and VOD. Amplify Video is an open source category for AWS Amplify that simplifies the development of serverless video-enabled web applications. With Amplify Video, you can build live streaming or video-on-demand integrated web applications in minutes. ) export default IntroductionSection