diff --git a/src/app/about/officer-data.ts b/src/app/about/officer-data.ts index 7db2f81..3bdcb40 100644 --- a/src/app/about/officer-data.ts +++ b/src/app/about/officer-data.ts @@ -218,7 +218,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, trevor_richardson: { position: "", - image: "public/officers/Trevor_Richardson.jpg", + image: "/ssd_logo.svg", name: "Trevor Richardson", socialLinksData: [ { @@ -230,7 +230,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, ranger_chenore: { position: "", - image: "public/officers/Ranger_Chenore.jpg", + image: "/ssd_logo.svg", name: "Ranger Chenore", socialLinksData: [ { @@ -242,7 +242,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, eric_navar: { position: "", - image: "public/officers/Eric_Navar.jpg", + image: "/ssd_logo.svg", name: "Eric Navar", socialLinksData: [ { @@ -278,7 +278,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, isaac_fuenmayor: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Isaac Fuenmayor", socialLinksData: [ { @@ -302,7 +302,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, andrew_kennedy: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Andrew Kennedy", socialLinksData: [ { @@ -326,7 +326,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, katherine_chan: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Katherine Chan", socialLinksData: [ { @@ -350,7 +350,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, song_li: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Song Li", socialLinksData: [ { @@ -362,7 +362,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, scott_harrison: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Scott Harrison", socialLinksData: [ { @@ -374,7 +374,7 @@ export const officerData: { [key: string]: OfficerCardProps } = { }, jacob_bleser: { position: "", - image: "", + image: "/ssd_logo.svg", name: "Jacob Bleser", socialLinksData: [ { diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4a5c278..d981f38 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,7 +3,7 @@ import Image from "next/image"; import styles from "./About.module.css"; import OfficerCard from "./officer-card"; -import officerCardData, { officerData, positionData } from "./officer-data"; +import { positionData } from "./officer-data"; export default function About() { // const officerCards = officerCardData.map((cardData) => (