back_end_docker #9

Merged
lucien merged 23 commits from back_end_docker into back_end 2024-12-06 03:36:58 +00:00
2 changed files with 25 additions and 0 deletions
Showing only changes of commit f77b96db25 - Show all commits

View file

@ -0,0 +1,19 @@
import LogoButton from "./LogoButton"
interface FooterProps {
bgcolor:string
}
export default function Footer ({bgcolor}:FooterProps) {
return (
<footer style={{display: "flex", justifyContent: "space-between", backgroundColor:bgcolor}}>
<div style={{ display : "flex", alignItems: "center", flexDirection: "row"}}>ENSIBS<br />RedCRAB</div>
<div style={{ display : "flex", alignItems: "center", flexDirection: "row"}}>
<LogoButton
url="https://www-ensibs.univ-ubs.fr/fr/index.html"
logo = "https://www-ensibs.univ-ubs.fr/skins/ENSIBS/resources/img/logo.png"
style={{ width: "50%", height: "auto" }}/>
</div>
</footer>
)
}

6
package-lock.json generated Normal file
View file

@ -0,0 +1,6 @@
{
"name": "projet-nuitinfo-2024",
"lockfileVersion": 3,
"requires": true,
"packages": {}
}