Marketing website improvements (#3169)

* Website improvement

* Improve website design

* Start writing script for user guide

* Begin adding user guide
This commit is contained in:
Félix Malfait
2023-12-27 16:14:42 +01:00
committed by GitHub
parent c08d8ef838
commit 3d5a364e29
57 changed files with 478 additions and 105 deletions

View File

@ -1,11 +1,18 @@
'use client'
import styled from '@emotion/styled'
const Container = styled.div`
display: flex;
flex-direction: column;
width: 600px;
@media(max-width: 809px) {
width: 100%;
}`;
export const ContentContainer = ({children}: {children?: React.ReactNode}) => {
return (
<div style={{
width: '600px',
display: 'flex',
flexDirection: 'column',
}}>{children}</div>
<Container>{children}</Container>
)
}