add folder structure

This commit is contained in:
luisa.bellitto 2025-06-14 15:50:19 +02:00 committed by Luisa Bellitto
parent 032806a5a9
commit 912b0a2b4c
8 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,17 @@
import "./header.css";
function Header() {
return (
<header className="base-header">
<div className="base-header-icon"> <img src='/assets/icons/feather_black.svg' alt="featherIcon" /> </div>
<p className="header-title small-title">
Feather Feed
</p>
<div className="base-header-icon"> <img src="/assets/icons/three_menu_stripes_black.svg" alt="menuIcon" /> </div>
</header>
);
}
export default Header;