feat: header mobile incompleto

This commit is contained in:
Thiago Bronisio 2023-01-07 13:13:32 -03:00
parent dc6b02c817
commit 68d25b3d12
3 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="pt-BR">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

View File

@ -17,7 +17,7 @@ export const MenuHamburguer = () => {
<>
<div className={styleMenu["container__wrapper__btnHamburguer"]}>
<button onClick={() => handleMenuHamburguer(menuOpen)}>
<button type="button" onClick={() => handleMenuHamburguer(menuOpen)}>
<img src={hamburguer} alt="Imagem expansão de menu" />
</button>
</div>
@ -27,7 +27,7 @@ export const MenuHamburguer = () => {
<>
<div>
<a href="/">Entrar</a>
<button>
<button type="button" aria-label="Botão fechar menu">
<img src={closeMenu} alt="Imagem fechar menu" />
</button>
</div>

View File

@ -3,7 +3,5 @@ import ReactDOM from 'react-dom/client';
import './global.scss';
import { Home } from './pages/Home';
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
root.render(<Home />);