diff --git a/frontend/src/app/ExecProfile.tsx b/frontend/src/app/ExecProfile.tsx index ab3472b..301f032 100644 --- a/frontend/src/app/ExecProfile.tsx +++ b/frontend/src/app/ExecProfile.tsx @@ -10,6 +10,8 @@ interface ExecProfileProps ImageBuffer: string; Position: number; + + Description: string; } const PositionStrings: string[] = [ @@ -22,20 +24,26 @@ const PositionStrings: string[] = [ "Director of Events" ]; -export default function ExecProfile({ID, Name, ImageBuffer, Position} : ExecProfileProps) +export default function ExecProfile({ID, Name, ImageBuffer, Position, Description} : ExecProfileProps) { console.log(`Position: ${Position}`); return (
-
-
-
- {Name}/ +
+
+
+ {Name}
-
- {Name} | - {PositionStrings[Position]} +
+
+ {Name} +  .  + {PositionStrings[Position]} +
+
+ {Description} +
@@ -44,3 +52,4 @@ export default function ExecProfile({ID, Name, ImageBuffer, Position} : ExecProf } + diff --git a/frontend/src/app/ExecProfiles.tsx b/frontend/src/app/ExecProfiles.tsx index 5fe74c5..8135668 100644 --- a/frontend/src/app/ExecProfiles.tsx +++ b/frontend/src/app/ExecProfiles.tsx @@ -47,12 +47,16 @@ export default function ExecProfiles({} : ExecProfilesProps) setProfiles(response["Payload"]); })(); }, [profiles]); -// ${profile.Name.FirstName} ${profile.Name.LastName} return ( <> { profiles.map((profile: any, index: any) => { - return ; + return ; }) } diff --git a/frontend/src/app/about/AboutPage.tsx b/frontend/src/app/about/AboutPage.tsx index 3de0347..f218af6 100644 --- a/frontend/src/app/about/AboutPage.tsx +++ b/frontend/src/app/about/AboutPage.tsx @@ -10,28 +10,28 @@ interface AboutPageState export function AboutPage({} : AboutPageProps) { - return (
-
-
+ return (
+
+
ABOUT US
-
+
The Langara Computer Science Club is officially back! We are a student-run club dedicated to providing a space for students interested in computer science at Langara to learn, network, help each other out, and have fun! This year, we plan to host workshops, programming competitions, and meetups.
-
+
OUR EXECS
-
+
We’re a team of enthusiasts who strive to make this club a fun place.
-
+
); -} \ No newline at end of file +} diff --git a/frontend/src/app/about/page.tsx b/frontend/src/app/about/page.tsx index 7e0ceb0..97d470e 100644 --- a/frontend/src/app/about/page.tsx +++ b/frontend/src/app/about/page.tsx @@ -5,7 +5,7 @@ import NavBar from "../NavBar"; export default function Page() { return ( -
+