fix(tiny mistake)

This commit is contained in:
purple 2023-12-29 01:03:48 +01:00
parent c3afe67e8f
commit 574d732eae

View file

@ -50,8 +50,8 @@ export default () => {
}; };
return ( return (
<Before />
<div className={'w-full bg-neutral-900 shadow-md overflow-x-auto'}> <div className={'w-full bg-neutral-900 shadow-md overflow-x-auto'}>
<BeforeNavigation />
<SpinnerOverlay visible={isLoggingOut} /> <SpinnerOverlay visible={isLoggingOut} />
<div className={'mx-auto w-full flex items-center h-[3.5rem] max-w-[1200px]'}> <div className={'mx-auto w-full flex items-center h-[3.5rem] max-w-[1200px]'}>
<div id={'logo'} className={'flex-1'}> <div id={'logo'} className={'flex-1'}>
@ -93,7 +93,7 @@ export default () => {
</Tooltip> </Tooltip>
</RightNavigation> </RightNavigation>
</div> </div>
<AfterNavigation />
</div> </div>
<After />
); );
}; };