6080-a3-BigBrain / frontend / src / FrontendPages / HeaderBar.jsx
HeaderBar.jsx
Raw
import React from 'react'
import {
  Typography
} from '@mui/material'

const headerStyle = {
  backgroundColor: '#ff984d',
  minHeight: '7vh',
  display: 'flex',
  flexDirection: 'column',
  alignItems: 'center',
  justifyContent: 'center',
  fontSize: 'calc(6px + 2vmin)',
  color: 'white',
}
const Header = () => {
  return (
    <div>
      <Typography sx={headerStyle}>
        BigBrain
      </Typography>
    </div>
  )
}

export default Header