* Improve marketing website * User guide with icons * Add TOC * Linter * Basic GraphQL playground * Very basic contributors page * Failed attempt to integrate REST playground * Yarn * Begin contributors DB * Improve contributors page
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import { ContentContainer } from './components/ContentContainer';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<ContentContainer>
|
|
<div style={{ minHeight: '60vh', marginTop: '50px' }}>
|
|
Part of the website is built directly with Framer, including the
|
|
homepage. <br />
|
|
We use Clouflare to split the traffic between the two sites.
|
|
</div>
|
|
</ContentContainer>
|
|
);
|
|
}
|