redbadger/website-honestly

View on GitHub
site/pages/our-work/slices/sky/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow

import React from 'react';

import { Container, Description, ReadMore, Header, Text, Logo } from '../shared';
import skyLogo from './images/sky.png';

type Props = {
  layoutRight?: boolean,
};

export default function Sky({ layoutRight }: Props) {
  return (
    <Container to="skyCMSCaseStudy" layoutRight={layoutRight}>
      <Text layout="fullWidth">
        <Logo src={skyLogo} slice="sky" />
        <Header>
          A modern CMS that is the foundation that supports both customers and the internal team
        </Header>
        <Description>
          Enabling Sky to manage their content with an amazing customer experience.
        </Description>
        <ReadMore center />
      </Text>
    </Container>
  );
}