redbadger/website-honestly

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

Summary

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

import React from 'react';

import { Container, Description, ReadMore, Header, Text, Image } from '../shared';
import pagoFxImg from './images/pagofx.jpg';

type Props = {
  layoutRight?: boolean,
};

export default function PagoFx({ layoutRight }: Props) {
  return (
    <Container to="pagoFxCaseStudy" layoutRight={layoutRight}>
      <Text layout={layoutRight ? 'rightCol' : 'leftCol'}>
        <Header>Delivering an end-to-end international transfers product in just 18 months </Header>
        <Description>
          Learn how Red Badger helped Santander’s PagoFX team to design, build and deliver a
          best-in-class payments service.
        </Description>
        <ReadMore />
      </Text>
      <Image src={pagoFxImg} alt="iPhone showing Pago FX application " />
    </Container>
  );
}