diff --git a/src/app/(main)/page.tsx b/src/app/(main)/page.tsx
index 4b4de57f..db57664a 100644
--- a/src/app/(main)/page.tsx
+++ b/src/app/(main)/page.tsx
@@ -53,7 +53,7 @@ export default function Home() {
/>
- {/* */}
+
>
);
}
diff --git a/src/components/Sponsors/IMC_logo.svg b/src/components/Sponsors/IMC_logo.svg
deleted file mode 100644
index cd567a09..00000000
--- a/src/components/Sponsors/IMC_logo.svg
+++ /dev/null
@@ -1,260 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Sponsors/Numerade_Logo.png b/src/components/Sponsors/Numerade_Logo.png
deleted file mode 100644
index 0db99a1d..00000000
Binary files a/src/components/Sponsors/Numerade_Logo.png and /dev/null differ
diff --git a/src/components/Sponsors/index.tsx b/src/components/Sponsors/index.tsx
index 0c7f7402..1a0f5a05 100644
--- a/src/components/Sponsors/index.tsx
+++ b/src/components/Sponsors/index.tsx
@@ -3,11 +3,15 @@ import Link from 'next/link';
import NextImage from 'next/image';
import Transition from '@/components/Transition';
-import NumeradeLogo from './Numerade_Logo.png';
-import IMCLogo from './IMC_logo.svg';
-
const mailToUrl =
- 'mailto:deeyaab2@illinois.edu, howardd2@illinois.edu?subject=%5BCOMPANY%20NAME%5D%20Interest%20in%20ACM%20%40%20UIUC';
+ 'mailto:corporate@acm.illinois.edu?subject=%5BCOMPANY%20NAME%5D%20Interest%20in%20ACM%20%40%20UIUC';
+
+type SponsorEntry = {
+ name: string;
+ url: string;
+ logo: string;
+};
+const sponsors: SponsorEntry[] = [];
function Sponsors() {
return (
@@ -15,41 +19,33 @@ function Sponsors() {
diff --git a/src/sections/about/LeadershipSection.tsx b/src/sections/about/LeadershipSection.tsx
index ad07a08d..f380318e 100644
--- a/src/sections/about/LeadershipSection.tsx
+++ b/src/sections/about/LeadershipSection.tsx
@@ -14,11 +14,11 @@ export default function LeadershipSection() {
name="Jacob Levine"
img={chair}
/>,
- ,
-
- ]
+ />,
+ ];
return (
Leadership
diff --git a/src/utils/api.ts b/src/utils/api.ts
index edf053fa..d2ba84c3 100644
--- a/src/utils/api.ts
+++ b/src/utils/api.ts
@@ -5,7 +5,9 @@ const baseurl = process.env.NEXT_PUBLIC_EVENTS_API_BASE_URL || '';
export async function fetchUpcomingEvents() {
try {
- const response = await fetch(`${baseurl}/api/v1/events?upcomingOnly=true&featuredOnly=true`);
+ const response = await fetch(
+ `${baseurl}/api/v1/events?upcomingOnly=true&featuredOnly=true`,
+ );
const rawDates = (await response.json()) as IEvent[];
return transformApiDates(rawDates);
} catch (err: any) {