From 537a34f3f99787b6a01eb5e7dc33d7ac069a465f Mon Sep 17 00:00:00 2001 From: Raidah Fairooz Date: Tue, 23 Jan 2024 15:40:37 -0800 Subject: [PATCH] bug fixes --- src/app/board/page.js | 8 +++-- src/components/board/Profile.js | 4 +-- src/components/board/Team.js | 58 +++++++++++++++++++++++++++++++-- 3 files changed, 64 insertions(+), 6 deletions(-) diff --git a/src/app/board/page.js b/src/app/board/page.js index a54c709..43cce8c 100644 --- a/src/app/board/page.js +++ b/src/app/board/page.js @@ -1,7 +1,11 @@ import React from "react"; - +import Team from "@/components/board/Team"; const page = () => { - return
page
; + return ( +
+ +
+ ); }; export default page; diff --git a/src/components/board/Profile.js b/src/components/board/Profile.js index e61af20..20df089 100644 --- a/src/components/board/Profile.js +++ b/src/components/board/Profile.js @@ -16,11 +16,11 @@ const Profile = ({ pronouns, }) => { return ( -
+
Picture of board member
{name}
diff --git a/src/components/board/Team.js b/src/components/board/Team.js index e8b097c..bcb9cd9 100644 --- a/src/components/board/Team.js +++ b/src/components/board/Team.js @@ -1,7 +1,61 @@ import React from "react"; - +import Profile from "@/components/board/Profile"; +import Javen from "@/public/assets/board/Javen.svg"; const Team = () => { - return
Team
; + return ( +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ ); }; export default Team;