nouveau fichier : front/src/components/Footer.tsx

This commit is contained in:
ChenNux 2024-12-06 00:36:52 +01:00
parent 6e67e1238b
commit f77b96db25
2 changed files with 25 additions and 0 deletions

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": {}
}