diff --git a/src/App.tsx b/src/App.tsx
index 285dad3..8ea401a 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,6 +9,8 @@ import initiatives from './pages/initiatives';
import news from './pages/news';
import newsArticle from './pages/newsArticle';
import notFound from './pages/404';
+import officers from './pages/officers';
+import committee from './pages/committee';
export default function App() {
return (
@@ -18,6 +20,8 @@ export default function App() {
+
+
diff --git a/src/index.d.ts b/src/index.d.ts
index 11a1b93..0acd3cd 100644
--- a/src/index.d.ts
+++ b/src/index.d.ts
@@ -15,4 +15,14 @@ declare namespace SGA {
publish_date: string;
_id: string;
}
+
+ interface MemberDocument {
+ _id: string;
+ name: string;
+ year: string;
+ committee: 'excomm' | 'officer' | 'class';
+ role: string;
+ profile_photo: {};
+ bio: string
+ }
}