Skip to content

Commit

Permalink
Merge pull request #18 from Eduardo-Pyment/feature/header
Browse files Browse the repository at this point in the history
Feature/header
  • Loading branch information
Pyments authored Jan 4, 2024
2 parents 2761724 + 3ad390c commit 8e9b332
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ function Footer() {
<img src={facebookIcon} alt="Ícone Facebook" />
</a>
<a href="https://twitter.com/laishuol" target="_blank">
<img src={twitterIcon} alt="Ícone Facebook" />
<img src={twitterIcon} alt="Ícone Twitter" />
</a>
<a href="https://www.instagram.com/laishuol/" target="_blank">
<img src={intagramIcon} alt="Ícone Facebook" />
<img src={intagramIcon} alt="Ícone Instagram" />
</a>
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/components/MainHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import "../style/components/MainHeader.scss";
import { Link } from "react-router-dom";

import logoSmall from "/AVASUS/src/assets/images/logo-small.png"

const MainHeader = () => {
return (
<>
<nav className="navbar">
<ul className="navbar-group">
<Link to="/AVASUS/">
<li className="navbar-group-item">
<img src="/AVASUS/src/assets/images/logo-small.png" alt="Logo AVASUS" />
<img src={logoSmall} alt="Logo AVASUS" />
</li>
</Link>

Expand Down

0 comments on commit 8e9b332

Please sign in to comment.