render()

in website/src/components/home.js [70:97]


  render() {
    const isPalm = this.state.width <= breakPoints.palm;

    return (
      <ThemeProvider theme={theme}>
        <Container>
          <Hero />
          {SECTIONS.map(({id, title, description, icon, isDark, background}, i) => {
            const SectionContent = SECTION_CONTENT[id];
            return (
              <Section
                key={`section-${i}`}
                title={title}
                description={description}
                icon={icon}
                isDark={isDark}
                marginBottom={'0px'}
                background={background}
              >
                <SectionContent isPalm={isPalm} />
              </Section>
            );
          })}
          <Footer />
        </Container>
      </ThemeProvider>
    );
  }