Files
twenty/packages/twenty-website/src/app/page.tsx
Félix Malfait c422045ea6 Marketing improvements 3 (#3175)
* 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
2023-12-29 11:17:32 +01:00

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>
);
}