barre menu en haut + ajustement style

This commit is contained in:
trochas
2026-01-11 01:36:32 +01:00
parent b9e67589ed
commit ecbddd3a58
10 changed files with 168 additions and 75 deletions

View File

@@ -0,0 +1,25 @@
import Login from "./login"
import SwitchThemeColor from "./SwitchThemeColor"
function TopBar(){
return(
<div className="topBar">
<div className="toBarLeft">
<img className="logo" src="/Frisbyee_logo.png"/>
<h2>Frisbyee</h2>
</div>
<div className="topBarRight">
<SwitchThemeColor/>
<Login/>
</div>
</div>
)
}
export default TopBar