From 94e1f86e99890d6a84178420f7e088077468838d Mon Sep 17 00:00:00 2001 From: GitLukeW Date: Sun, 9 Apr 2023 17:05:12 -0400 Subject: [PATCH] styled mentee profile to wireframe --- src/components/ProfileMentee.js | 114 +++++++++++++++++++++++++------- 1 file changed, 89 insertions(+), 25 deletions(-) diff --git a/src/components/ProfileMentee.js b/src/components/ProfileMentee.js index 9f502f3..5671a1f 100644 --- a/src/components/ProfileMentee.js +++ b/src/components/ProfileMentee.js @@ -1,7 +1,7 @@ import { useState, useEffect } from "react"; import axios from "axios"; import ProfileBasicInfo from "./ProfileBasicInfo"; -import { Avatar, Typography, Grid } from "@mui/material"; +import { Avatar, Typography, Grid, Box } from "@mui/material"; import { Switch } from "@mui/material"; import FormGroup from "@mui/material/FormGroup"; import FormControlLabel from "@mui/material/FormControlLabel"; @@ -45,10 +45,10 @@ export default function ProfileMentee({ token, pk, setAuth }) { }, [token, pk]); return ( -
- + + - + {`Team Number: ${teamNumber}`} -
- + + + Notifications: + - Notifications + + + + {/* + + Time + {" "} + + */} - Email - - - } label="Mentor Session Requested"/> - } label="Mentor Session Confirmed"/> - } label="Mentor Session Cancelled"/> - - + +

+
+ + + Notify me when a mentor confirms a session + + + + + Notify me when a mentor cancels a session + + + + + Notify me 15 minutes before a session + + + + + Notify me 60 minutes before a session + + +
+
+ + Email Notifications - Text - - } label="Mentor Session Requested"/> - } label="Mentor Session Confirmed"/> - } label="Mentor Session Cancelled"/> + + } /> + + } /> + + + } /> + + + } /> + + + + + Text Notifications - - -
-
+ + } /> + + } /> + + + } /> + + + } /> + + + + + + + ); }