saepequia
Version:
A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
23 lines (19 loc) • 425 B
JavaScript
/* @flow */
import { styled } from 'linaria/react';
import React from 'react';
import Header from './Header';
import Hero from './Hero';
export default function Index() {
return (
<Page>
<Header />
<Hero />
</Page>
);
}
const Page = styled.div`
background: linear-gradient(to bottom right, #b24592, #f15f79);
color: #fff;
min-height: 100vh;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
`;