add list unfinished

This commit is contained in:
p2405951
2025-11-20 11:53:20 +01:00
parent dcc78353f2
commit d4fa258918
4 changed files with 2987 additions and 12 deletions
+2763 -12
View File
File diff suppressed because it is too large Load Diff
+68
View File
@@ -0,0 +1,68 @@
import React from "react";
import styles from "./VolunteersPage.module.css";
function Volunteer({ name, role, since, email, phone, photo }) {
return (
<div className={`${styles.profileboard} glassCard`}>
<div className={styles.contentWrapper}>
<div className={styles.profilePictureContainer}>
<img src={photo} alt={`${name}'s profile`} className={styles.profilePicture} />
</div>
<div className={styles.description}>
<h2>{name}</h2>
<div className={styles.topDescription}>
<p><strong>Rôle :</strong> {role}</p>
<p><strong>Membre depuis :</strong> {since}</p>
<p><strong>Email :</strong> {email}</p>
<p><strong>Téléphone :</strong> {phone}</p>
</div>
</div>
</div>
</div>
);
}
function VolunteerPage() {
const volunteers = [
{
name: "LEBLOND Malo",
role: "Président",
since: "2019",
email: "malo.leblond@example.com",
phone: "08 67 87 32 21",
photo: "../src/assets/react.svg",
},
{
name: "DUPONT Jean",
role: "Bénévole",
since: "2020",
email: "jean.dupont@example.com",
phone: "06 12 34 56 78",
photo: "../src/assets/react.svg",
},
];
const volunteerList = [];
for (let i = 0; i < volunteers.length; i++) {
volunteerList.push(
<Volunteer
key={i}
name={volunteers[i].name}
role={volunteers[i].role}
since={volunteers[i].since}
email={volunteers[i].email}
phone={volunteers[i].phone}
photo={volunteers[i].photo}
/>
);
}
return (
<div className={styles.container}>
<h2>Liste des Bénévoles</h2>
<div>{volunteerList}</div>
</div>
);
}
export default VolunteerPage;
@@ -0,0 +1,151 @@
/* Styles de base (mobile) */
.container {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.profileboard {
width: 100%;
padding: 15px;
border-radius: 10px;
box-sizing: border-box;
}
.contentWrapper {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.profilePictureContainer {
width: 120px;
height: 120px;
margin-bottom: 15px;
}
.profilePicture {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.description {
width: 100%;
text-align: left;
margin-left: 4%;
}
.topDescription {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 15px;
}
.infoBlock {
width: 100%;
background: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: 5px;
}
.event {
width: 100%;
padding: 12px;
margin-bottom: 10px;
border-radius: 8px;
}
.eventTasks {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out, opacity 0.2s ease;
opacity: 0;
padding-left: 20px;
}
.eventTasks.expanded {
max-height: 500px;
opacity: 1;
margin-top: 10px;
}
.description h2 {
font-size: 30px;
margin-bottom: 2%;
}
.description button {
width: 50px;
height: 50px;
}
/* Tablette (768px et plus) */
@media screen and (min-width: 768px) {
.contentWrapper {
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}
.profilePictureContainer {
width: 150px;
height: 150px;
margin-right: 20px;
margin-bottom: 0;
}
.description {
width: calc(100% - 170px);
margin-left: 4%;
}
.topDescription {
flex-direction: row;
justify-content: space-between;
}
.infoBlock {
width: 48%;
}
.event {
padding: 15px;
}
}
/* Desktop (1024px et plus) */
@media screen and (min-width: 1024px) {
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.profileboard {
padding: 25px;
}
.profilePictureContainer {
width: 200px;
height: auto;
}
.description {
width: calc(100% - 220px);
margin-left: 4%;
display:flex;
flex-direction: column;
}
.topDescription{
display:flex;
flex-direction: column;
}
.event {
padding: 18px;
}
}
+5
View File
@@ -2,6 +2,7 @@ import { createBrowserRouter } from "react-router";
import Layout from "./layout.jsx";
import HomePage from "./pages/Home/HomePage";
import LoginPage from "./pages/Login/LoginPage";
import VolunteersPage from "./pages/Volunteers/VolunteersPage";
const router = createBrowserRouter([
{
@@ -15,6 +16,10 @@ const router = createBrowserRouter([
{
path: "/login",
Component: LoginPage,
},
{
path: "/volunteers",
Component: VolunteersPage,
}
]
}