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,18 +1,22 @@
'use client'
'use client';
import styled from '@emotion/styled'
import styled from '@emotion/styled';
const Container = styled.div`
display: flex;
flex-direction: column;
width: 600px;
@media(max-width: 809px) {
width: 100%;
}`;
display: flex;
flex-direction: column;
width: 100%;
padding: 0px 96px 0px 96px;
@media (max-width: 809px) {
width: 100%;
padding: 0px 12px 0px 12px;
}
`;
export const ContentContainer = ({children}: {children?: React.ReactNode}) => {
return (
<Container>{children}</Container>
)
}
export const ContentContainer = ({
children,
}: {
children?: React.ReactNode;
}) => {
return <Container>{children}</Container>;
};