import React from 'react' import styled from 'styled-components' import LandingLink from '../Button/Link' import { screenSizes } from '../../constants' const Container = styled.div` background-color: #242f3e; padding: 0 50px; ` const ContentWrapper = styled.div` padding: 50px; display: flex; gap: 50px; @media (max-width: ${screenSizes.m}px) { flex-direction: column; padding: 10px; padding-top: 20px; } ` const Content = styled.div` flex: 1; ` const ContentTitle = styled.h2` font-size: 24px; font-weight: 600; color: #ffffff; margin: 0 0 50px 0; ` const ContentText = styled.p` font-size: 18px; color: #ffffff; margin: 0 0 50px 0; ` const StyledContentLink = styled.a` display: flex; font-size: 18px; color: #ffffff; margin: 0 0 10px 0; text-decoration: none; width: 220px; ` const Divideur = styled.div` margin-top: 20px; border: 1px solid #e5e5e5; width: 100%; ` const InfoContainer = styled.div` padding: 10px 0; display: flex; justify-content: center; ` const InfoLink = styled.a` font-size: 12px; color: #ffffff; font-weight: 600; margin: 0 5px; text-decoration: none; ` const NormalText = styled.p` font-size: 12px; color: #ffffff; margin: 0 5px; ` const UsefulLinks = styled.div` display: flex; flex-wrap: wrap; gap: 25px; ` const BoldLink = styled.a` font-weight: 600; margin: 0; text-decoration: none; color: #ffffff; ` type ContentLinkProps = { href: string text: string } const ContentLink = ({ href, text }: ContentLinkProps) => ( {text} ) const Footer = () => ( Getting started Start using Amplify Video to easily incorporate video streaming into your mobile and web applications. Open source code Amplify Video is an open source plugin for the Amplify CLI. Take a look at the project on GitHub. Useful links Site Terms Privacy © 2020 Amazon Web Services, Inc. or its affiliates. All rights reserved. Created by{' '} TrackIt ) export default Footer