Merge pull request #11 from LucidKobold/polish

Remove redundant componenets.
This commit is contained in:
Lucid Kobold
2021-11-27 19:37:26 -06:00
committed by GitHub

View File

@@ -119,8 +119,7 @@ const Header = (): JSX.Element => {
</HStack> </HStack>
{/* Desktop Nav Items and Mobile Menu Button */} {/* Desktop Nav Items and Mobile Menu Button */}
<Box h="auto" w="100%" px={4}> <HStack w="100%" px={4} h={12} alignItems="center" justifyContent="space-between" >
<Flex h={12} alignItems="center" justifyContent="space-between" >
<HStack <HStack
w="100%" w="100%"
h="auto" h="auto"
@@ -164,8 +163,7 @@ const Header = (): JSX.Element => {
/> />
<MobileNav updateOpen={setOpen} /> <MobileNav updateOpen={setOpen} />
</Menu> </Menu>
</Flex> </HStack>
</Box>
</Box> </Box>
); );
}; };