Modifications user guide (#5207)

- Modified layout and responsive
- Added remaining user guide cards
- Added new table of content:


https://github.com/twentyhq/twenty/assets/102751374/007118e5-60f2-4572-90cf-339c134f23c4

-Added fade-in:


https://github.com/twentyhq/twenty/assets/102751374/0669c06d-3eab-484c-a5b5-3857c68f42b5

---------

Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
This commit is contained in:
Ady Beraud
2024-05-01 09:55:57 +03:00
committed by GitHub
parent df5cb9a904
commit 0bc3b6f179
22 changed files with 479 additions and 284 deletions

View File

@ -1,6 +1,7 @@
'use client';
import styled from '@emotion/styled';
import { motion } from 'framer-motion';
const StyledTitle = styled.div`
margin: 64px auto 0px;
@ -23,9 +24,15 @@ const StyledSubHeader = styled.h1`
export const Title = () => {
return (
<StyledTitle>
<StyledHeader>Latest</StyledHeader>
<StyledSubHeader>Releases</StyledSubHeader>
</StyledTitle>
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.2 }}
>
<StyledTitle>
<StyledHeader>Latest</StyledHeader>
<StyledSubHeader>Releases</StyledSubHeader>
</StyledTitle>
</motion.div>
);
};