Skip to content

Commit

Permalink
Add Staff interface to Staff.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Cykotech committed Feb 15, 2025
1 parent 5fb82f8 commit b14db6a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/routes/About/Staff.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import StaffCard from "./StaffCard.tsx";
import staff from "./staff-info.json";

interface Staff {
name: string;
preferredLanguage: string;
bio: string;
yearsExp: number;
}

export default function Staff() {
return (
<div className="bg-primary pb-12 pt-6">
Expand Down

0 comments on commit b14db6a

Please sign in to comment.