Skip to content

Commit

Permalink
Update logo import in Header component
Browse files Browse the repository at this point in the history
  • Loading branch information
insulationman committed Mar 7, 2024
1 parent 0f9ded3 commit bfa8f5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import SellaLogo from "./assets/logo.svg";
import CabLogo from "./assets/logo.svg";

const Header = () => {
return (
<div className="flex w-full items-center p-4 gap-2">
<h1 className="text-2xl font-bold">ChatGBG</h1>
<span className="ml-auto">En produkt av</span>
<img src={SellaLogo} alt="Sella" className="w-20" />
<span className="ml-auto"></span>
<img src={CabLogo} alt="Sella" className="w-20" />
</div>
);
};
Expand Down

0 comments on commit bfa8f5a

Please sign in to comment.