fix(header): fix header image import not showing on prod build

This commit is contained in:
kodo 2025-03-01 20:49:40 -03:00
parent 112958d09e
commit 4c473a01c6

@ -1,11 +1,10 @@
import toxic_square from '../assets/toxic_square.png';
export function Header() {
return (
<div className="fixed w-[90%] flex pt-8 justify-between items-center">
<div className="flex items-center gap-1">
<img
src="src/assets/toxic_square.png"
className="w-[4rem] aspect-square"
/>
<img src={toxic_square} className="w-[4rem] aspect-square" />
<div className="flex flex-col text-left">
<strong className="text-2xl">Team Toxic</strong>
</div>