Skip to content

Commit

Permalink
new coord, new schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaumohl committed Jan 22, 2024
1 parent c992961 commit 596ca22
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,11 @@ declare module 'astro:content' {
collection: "coordinators";
data: InferEntrySchema<"coordinators">
};
"chris-gottwaldt": {
id: "chris-gottwaldt";
collection: "coordinators";
data: InferEntrySchema<"coordinators">
};
"david-teather": {
id: "david-teather";
collection: "coordinators";
Expand Down
Binary file added src/assets/profiles/chris-gottwaldt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 11 additions & 7 deletions src/content/_coord-hours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,35 @@ interface CoordHour {
let CoordHours: CoordHour[] = [
{
Time: "10 - 11 AM",
Coords: ["Ben L", "", "Ben L", "", ""],
Coords: ["", "", "", "", "Emily"],
},
{
Time: "11 AM - 12 PM",
Coords: ["Michael N", "David", "Michael N", "David", ""],
Coords: ["Chris", "Rudy", "", "Rudy", "Emily"],
},
{
Time: "12 - 1 PM",
Coords: ["Pranav", "Pranav", "Ben W", "Alan", ""],
Coords: ["", "", "", "", ""],
},
{
Time: "1 - 2 PM",
Coords: ["Alan", "Sam", "", "Sam", "Mihir"],
Coords: ["Michael", "Ben L", "Michael", "Ben L", "Sam"],
},
{
Time: "2 - 3 PM",
Coords: ["", "", "Ben W", "Rudy", "Mihir"],
Coords: ["David", "", "David", "", "Sam"],
},
{
Time: "3 - 4 PM",
Coords: ["Grace S", "Berkey", "Berkey", "Rudy", "Emily"],
Coords: ["", "", "", "", ""],
},
{
Time: "4 - 5 PM",
Coords: ["", "", "Grace S", "", "Emily"],
Coords: ["Grace", "", "Chris", "", ""],
},
{
Time: "5 - 6 PM",
Coords: ["Grace", "", "", "", ""],
},
];

Expand Down
10 changes: 10 additions & 0 deletions src/content/coordinators/chris-gottwaldt.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"grade": "Junior",
"name": "Chris Gottwaldt",
"isActive": true,
"image": "chris-gottwaldt.png",
"study": "Computer Science & Data Science",
"github": "christophergottwaldt",
"linkedIn": "christophergottwaldt",
"bio": "Hi"
}
2 changes: 1 addition & 1 deletion src/content/coordinators/michael-berkey.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Michael Berkey",
"isActive": true,
"isActive": false,
"grade": "Senior",
"study": "Computer Science",
"github": "mdberkey",
Expand Down
3 changes: 1 addition & 2 deletions src/pages/hours.astro
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,4 @@ const hasCoordColor = curCoordInfo.hasCoord ? "text-green-500" : "text-red-700";
</tbody>
</table>
</div>
</Layout>
../content/_coord-hours
</Layout>

0 comments on commit 596ca22

Please sign in to comment.