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
This commit is contained in:
Félix Malfait
2023-12-29 11:17:32 +01:00
committed by GitHub
parent fa8a04743c
commit c422045ea6
46 changed files with 7589 additions and 687 deletions

View File

@ -1,14 +1,13 @@
import Image from 'next/image'
import { ContentContainer } from './components/ContentContainer'
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.
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>
)
);
}