redbadger/website-honestly

View on GitHub
site/pages/join-us/header-container/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from 'react';
import styles from './style.css';

const HeaderContainer = () => (
  <div className={styles.headings}>
    <h1 className={styles.h1}>Join us</h1>
    <p>
      We recognise our people are the best thing about Red Badger and that a truly diverse workplace
      where people are free to be themselves is essential for great culture and great outcomes. If
      you like solving difficult problems, working with great people and making a real impact, join
      us and become a Badger.
    </p>
  </div>
);

export default HeaderContainer;