Use footer semantic HTML tag

This commit is contained in:
Zetaphor 2023-06-16 17:26:58 -03:00
parent e597e59bfe
commit c4146cc66a
1 changed files with 2 additions and 5 deletions

View File

@ -16,10 +16,7 @@ export class Footer extends Component<FooterProps, any> {
render() {
return (
<nav
id="footer"
className="container-lg navbar navbar-expand-md navbar-light navbar-bg p-3"
>
<footer className="container-lg navbar navbar-expand-md navbar-light navbar-bg p-3">
<div className="navbar-collapse">
<ul className="navbar-nav ml-auto">
{this.props.site?.version !== VERSION && (
@ -66,7 +63,7 @@ export class Footer extends Component<FooterProps, any> {
</li>
</ul>
</div>
</nav>
</footer>
);
}
}