pages/history.tsx
import { s3 } from 'common/constants/urls';
import Content from 'components/Content/Content';
import Head from 'components/head';
import HeroBanner from 'components/HeroBanner/HeroBanner';
import Timeline from 'components/Timeline/Timeline';
import TimelineNav from 'components/Timeline/TimelineNav/TimelineNav';
import styles from 'styles/history.module.css';
const pageTitle = 'History';
function History() {
return (
<div className={styles.History}>
<Head title={pageTitle} />
<HeroBanner
backgroundImageSource={`${s3}heroBanners/colin-powell.jpg`}
className={styles.hero}
title={pageTitle}
>
<>
<blockquote className={styles.quote}>
“There are no secrets to success. It is the result of preparation, hard work,
learning from failure.”
</blockquote>
<span className={styles.author}>- Colin Powell</span>
</>
</HeroBanner>
<Content
theme="white"
columns={[
<section>
<TimelineNav />
<Timeline />
</section>,
]}
/>
</div>
);
}
export default History;