18 lines
578 B
JavaScript
18 lines
578 B
JavaScript
import React from 'react';
|
|
import HeroHeadline from './HeroHeadline';
|
|
import QuadrantGrid from './QuadrantGrid';
|
|
import Fadeable from './Fadeable';
|
|
import SetTitle from './SetTitle';
|
|
|
|
export default function PageIndex({ leaving, onLeave, items, navigate, ...props }) {
|
|
return (
|
|
<Fadeable leaving={leaving} onLeave={onLeave}>
|
|
<SetTitle {...props} title="Technology Radar" />
|
|
<div className="headline-group">
|
|
<HeroHeadline alt="Mar 2017">AOE Technology Radar (beta)</HeroHeadline>
|
|
</div>
|
|
<QuadrantGrid items={items} />
|
|
</Fadeable>
|
|
);
|
|
}
|