diff --git a/src/components/GetInvolvedRow.tsx b/src/components/GetInvolvedRow.tsx
index 3ec58bd..e9cd1b4 100644
--- a/src/components/GetInvolvedRow.tsx
+++ b/src/components/GetInvolvedRow.tsx
@@ -1,11 +1,11 @@
-export default function GetInvolvedRow({ way }: { way: SGA.GetInvolvedWay}) {
+export default function GetInvolvedRow({ way }: { way: SGA.GetInvolvedWay }) {
return (
-
+
{way.title}
-
{way.text}
+
{way.text}
);
diff --git a/src/pages/involved.tsx b/src/pages/involved.tsx
index 6674253..feefb16 100644
--- a/src/pages/involved.tsx
+++ b/src/pages/involved.tsx
@@ -1,5 +1,6 @@
import { SanityDocument } from '@sanity/client';
import React from 'react';
+import { Link } from 'react-router-dom';
import GetInvolvedRow from '../components/GetInvolvedRow';
import Hero from '../components/Hero';
import '../css/get-involved.css';
@@ -25,7 +26,7 @@ export default function GetInvolved() {
width='800'
height='600'
/>
-
+
Interested in getting involved with SGA? You can run for office, work
on a project, or apply to a committee. If you just want to share an
idea or concern or get to know your representatives, reach out to us
@@ -33,18 +34,17 @@ export default function GetInvolved() {
{ways ? (
<>
-
Here are some ways to connect with SGA:
+
+ Here are some ways to connect with SGA:
+
{ways.ways.map((way) => (
))}
>
) : null}
-
- Contact Us
-
+
+ Give Feedback
+
>
);