diff --git a/src/components/Mission.tsx b/src/components/Mission.tsx
index 8e1e4a2..7f74246 100644
--- a/src/components/Mission.tsx
+++ b/src/components/Mission.tsx
@@ -1,7 +1,7 @@
import React from 'react';
-import { Link } from 'react-router-dom';
import '../css/mission.css';
import useMission from '../hooks/useMission';
+import BlueButtonLink from './BlueButtonLink';
export default function Mission() {
let mission = useMission();
@@ -13,9 +13,7 @@ export default function Mission() {
“{mission.vision}”
-
- Our Mission
-
+ Our Mission
);
diff --git a/src/components/RowItemSubheader.tsx b/src/components/RowItemSubheader.tsx
new file mode 100644
index 0000000..f114b81
--- /dev/null
+++ b/src/components/RowItemSubheader.tsx
@@ -0,0 +1,3 @@
+export default function RowItemSubheader({ children }) {
+ return {children};
+}
diff --git a/src/components/Segment.tsx b/src/components/Segment.tsx
index 7b0d1f9..7470a94 100644
--- a/src/components/Segment.tsx
+++ b/src/components/Segment.tsx
@@ -15,14 +15,14 @@ function SegmentHeader({ children }: { children: React.ReactNode }) {
);
}
-export default function Segment({ title, content, imageURL, infoURL }) {
+export default function Segment({ title, content, imageUrl, infoUrl }) {
return (
{title}
-
+
{content}
- MORE INFO
+ MORE INFO
);
}
diff --git a/src/components/SegmentGroup.tsx b/src/components/SegmentGroup.tsx
index d4a3e4a..63b06d6 100644
--- a/src/components/SegmentGroup.tsx
+++ b/src/components/SegmentGroup.tsx
@@ -1,26 +1,35 @@
import Segment from './Segment';
+export const segments = [
+ {
+ imageUrl: '/images/segments/news-and-happenings.jpg',
+ infoUrl: '/news',
+ title: 'News and Happenings',
+ content:
+ 'Read about SGA initiatives, goals, and progress from SGA officers, as well as from other student leaders, students, and student organizations.',
+ },
+ {
+ imageUrl: '/images/segments/who-we-are.jpg',
+ title: 'Who We Are',
+ infoUrl: '/officers',
+ content:
+ "Learn about your representatives, and how they're working to advance the common agenda that SGA has set to improve your experience at TJ.",
+ },
+ {
+ imageUrl: '/images/segments/get-involved.jpg',
+ infoUrl: '/involved',
+ title: 'Get Involved',
+ content:
+ 'Any questions or concerns? Have an idea for how SGA could be doing more to advocate for students? Want to get involved? Contact Us!',
+ },
+];
+
export default function InfoColumnGroup() {
return (