File size: 246 Bytes
58973c7
 
 
 
 
 
a372176
58973c7
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Typography, Box } from '@mui/material';

function Header() {
  return (
    <Box sx={{ mb: 4 }}>
      <Typography variant="h2" component="h1" align="center">
        SimpliFi
      </Typography>
    </Box>
  );
}

export default Header;