MCPcopy Create free account
hub / github.com/LevelUpWeb3/app / NavigationWrapper

Function NavigationWrapper

src/components/Navigation/NavigationWrapper.tsx:3–27  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

1import { Box, Container, Stack } from "@mui/material";
2
3const NavigationWrapper = (props) => {
4 const { children, sx } = props;
5 return (
6 <Box
7 sx={{
8 backgroundColor: "#FFEEDA80",
9 }}
10 >
11 <Container>
12 <Stack
13 direction="row"
14 sx={{
15 width: "100%",
16 py: ["30px", "56px"],
17 justifyContent: "space-between",
18 alignItems: "center",
19 ...sx,
20 }}
21 >
22 {children}
23 </Stack>
24 </Container>
25 </Box>
26 );
27};
28
29export default NavigationWrapper;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected