We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12bd5a commit d984619Copy full SHA for d984619
1 file changed
src/routes/About/Staff.tsx
@@ -0,0 +1,15 @@
1
+import StaffCard from "./StaffCard.tsx";
2
+import staff from "./staff-info.json";
3
+
4
+export default function Staff() {
5
+ return (
6
+ <div className="bg-primary pt-6 pb-12">
7
+ <h3 className="text-3xl text-center text-secondary mb-12">Staff</h3>
8
+ <div className="grid grid-cols-2 gap-x-48 gap-y-16 mx-36">
9
+ {staff.map((member: Staff, index) => (
10
+ <StaffCard staff={member} key={index} />
11
+ ))}
12
+ </div>
13
14
+ );
15
+}
0 commit comments