render()

in website/src/components/footer.js [108:157]


  render() {
    return (
      <Container>
        <SectionContainer>
          <SectionText>created by</SectionText>
          <a target="_blank" rel="noopener noreferrer" href="https://www.uber.com/info/atg/">
            <img src={ATG_LOGO} height={16} />
          </a>
          <SectionText>and</SectionText>
          <VisGLLogo logo={VIS_LOGO}>
            <a target="_blank" rel="noopener noreferrer" href="http://vis.gl">
              VIS.GL
            </a>
          </VisGLLogo>
        </SectionContainer>

        <SectionContainer>
          <SectionText>partnership with</SectionText>
          <StyledLogo>
            <a
              target="_blank"
              rel="noopener noreferrer"
              href="https://voyage.auto/"
              style={{lineHeight: 1.2}}
            >
              Voyage Auto
            </a>
          </StyledLogo>
          <MapboxLogo target="_blank" rel="noopener noreferrer" href="https://mapbox.com/" />
          <StyledLogo>
            <a target="_blank" rel="noopener noreferrer" href="https://www.appliedintuition.com/">
              <img src={AI_LOGO} height={24} />
            </a>
          </StyledLogo>
        </SectionContainer>

        <SectionContainer>
          <GithubButton href="https://github.com/uber/streetscape.gl">
            <span className={'icon-github'} />
          </GithubButton>
          <FacebookShareButton url="https://avs.auto">
            <FacebookIcon size={32} />
          </FacebookShareButton>{' '}
          <TwitterShareButton url="https://avs.auto" hashtags={['AVS']}>
            <TwitterIcon size={32} />
          </TwitterShareButton>
        </SectionContainer>
      </Container>
    );
  }