chore: rebrand navbar + footer — tadpole logo, retrait Boutique nav, copyright Tetardtek
- Logo bretzel → tadpole.svg (navbar + footer) - Retrait lien Boutique de la navigation (page conservée, masquée) - Footer : texte Clickerz, GitHub Kevin T seul, © 2026 Tetardtek · Powered by Brain
This commit is contained in:
@@ -2,56 +2,26 @@ import "../scss/components/footer.scss";
|
||||
import { NavLink as Link } from "react-router-dom";
|
||||
import CardContact from "./cardsContact/CardContact";
|
||||
|
||||
const infoDev = [
|
||||
{
|
||||
id: "1",
|
||||
name: "Alix C",
|
||||
gitHub: "https://github.com/Halicksse",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sebatien L",
|
||||
gitHub: "https://github.com/Lambseb",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Baptiste S",
|
||||
gitHub: "https://github.com/Batsave",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Kevin T",
|
||||
gitHub: "https://github.com/tetardtek",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Nicolas DF",
|
||||
gitHub: "https://github.com/Defreitasnicolas",
|
||||
},
|
||||
];
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className="footer">
|
||||
<div className="footer-container">
|
||||
<Link
|
||||
to="/#home"
|
||||
to="/"
|
||||
className="footer-logo"
|
||||
alt="Logo"
|
||||
aria-label="Logo Officiel"
|
||||
title="Aller à la page d'accueil"
|
||||
aria-label="Logo Clickerz"
|
||||
title="Aller à la page d’accueil"
|
||||
/>
|
||||
<div className="section">
|
||||
<p className="section-title">A Propos</p>
|
||||
<p className="section-text">
|
||||
Ce site est un prototype d'exercice développé lors d'un Hackathon
|
||||
dans le cadre d’une formation de Développeur Web et Mobile au sein
|
||||
de la Wild Code School sur le campus Remote de Septembre 2023.
|
||||
Clickerz — fais éclore des têtards, construis ton empire et domine
|
||||
le marais.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="section">
|
||||
<p className="section-title">Légale</p>
|
||||
<p className="section-title">Légal</p>
|
||||
<ul className="section-list">
|
||||
<li className="section-item">
|
||||
<Link
|
||||
@@ -66,18 +36,17 @@ export default function Footer() {
|
||||
Cookies
|
||||
</Link>
|
||||
</li>
|
||||
<li className="section-item"></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="spacing" />
|
||||
</div>
|
||||
<div className="footer-section">
|
||||
<div className="cardContactContainer">
|
||||
{infoDev.map((info) => (
|
||||
<CardContact key={info.id} name={info.name} gitHub={info.gitHub} />
|
||||
))}
|
||||
<CardContact name="Kevin T" gitHub="https://github.com/tetardtek" />
|
||||
</div>
|
||||
<p className="copyright">© 2023 | TrueQuiLeaks. Tous droits réservés.</p>
|
||||
<p className="copyright">
|
||||
© 2026 Tetardtek · Powered by Brain
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
|
||||
@@ -1,20 +1,14 @@
|
||||
[
|
||||
{
|
||||
"id": "1",
|
||||
"linkname": "Jeu",
|
||||
"linkurl": "/jeu",
|
||||
"btn": false
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"linkname": "Boutique",
|
||||
"linkurl": "/boutique",
|
||||
"btn": false
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"linkname": "Succès",
|
||||
"linkurl": "/achievements",
|
||||
"btn": false
|
||||
}
|
||||
]
|
||||
[
|
||||
{
|
||||
"id": "1",
|
||||
"linkname": "Jeu",
|
||||
"linkurl": "/jeu",
|
||||
"btn": false
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"linkname": "Succès",
|
||||
"linkurl": "/achievements",
|
||||
"btn": false
|
||||
}
|
||||
]
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
background-image: url(/svg/logo.svg);
|
||||
background-image: url(/svg/tadpole.svg);
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
}
|
||||
.logo {
|
||||
width: 5rem;
|
||||
content: url(/svg/logo.svg);
|
||||
content: url(/svg/tadpole.svg);
|
||||
transition: 0.2s;
|
||||
|
||||
&:hover {
|
||||
|
||||
Reference in New Issue
Block a user