Add releases page

This commit is contained in:
Daniel Lautzenheiser
2023-04-20 15:49:06 -04:00
parent 8daa9b9b83
commit 08c5e253b7
4 changed files with 179 additions and 5 deletions

View File

@ -28,7 +28,7 @@ const StyledAppBar = styled(AppBar)(
const StyledToolbar = styled(Toolbar)(
({ theme }) => `
gap: 16px;
gap: 12px;
height: 72px;
${theme.breakpoints.down('lg')} {
@ -90,6 +90,8 @@ const StyledDesktopGap = styled('div')(
const StyledDesktopLink = styled(Button)(
({ theme }) => `
color: white;
text-transform: none;
min-width: unset;
&:hover {
color: rgba(255, 255, 255, 0.6);
@ -118,6 +120,10 @@ const Header = ({ mode, docsGroups, searchablePages, toggleColorMode }: HeaderPr
const items: MenuItem[] = useMemo(
() => [
{
title: 'v2.0.0',
url: '/releases',
},
{
title: 'Docs',
path: '/docs',
@ -130,10 +136,6 @@ const Header = ({ mode, docsGroups, searchablePages, toggleColorMode }: HeaderPr
})),
})),
},
{
title: 'Contributing',
url: '/docs/contributor-guide',
},
{
title: 'Community',
url: '/community',