/* global React, Hero, Companies, Footer */

const HEADLINE = {
  headline: "Where culture|meets {craft.}",
  sub: "From the stages of Europe's most iconic theaters\nto the frontier of digital innovation.",
  eyebrow: "Clay Entertainment",
};

const App = () => (
  <>
    <Hero headline={HEADLINE.headline} subline={HEADLINE.sub} eyebrow={HEADLINE.eyebrow} />
    <Companies />
    <Footer />
  </>
);

window.App = App;
