new hero animation using bodymovin and lottie

This commit is contained in:
August Skare
2018-11-07 09:48:10 +01:00
parent 2dfca078fd
commit 3a23e795ac
25 changed files with 261 additions and 46 deletions

View File

@@ -3,7 +3,6 @@ import * as React from 'react';
import ThemeContext from 'ts/context';
import GlobalStyles from 'ts/globalStyles';
import Header from 'ts/components/Header';
import Hero from 'ts/components/Hero';
import Footer from 'ts/components/Footer';
interface BaseProps {
@@ -16,7 +15,6 @@ function Base(props: BaseProps) {
<ThemeContext.Provider value={props.context}>
<GlobalStyles />
<Header />
<Hero />
{props.children}
<Footer />
</ThemeContext.Provider>