diff --git a/src/components/SponsorLogoStrip.tsx b/src/components/SponsorLogoStrip.tsx index 78694dc..510fdab 100644 --- a/src/components/SponsorLogoStrip.tsx +++ b/src/components/SponsorLogoStrip.tsx @@ -69,35 +69,37 @@ export default async function SponsorLogoStrip() { if (sponsors.length === 0) return null; return ( -
-
- - Content Partners - -
- - Advertise → - -
-
- {sponsors.map((s) => ( - - {/* eslint-disable-next-line @next/next/no-img-element */} - {s.name} +
+
+
+ + Content Partners + +
+ + Advertise → - ))} -
-
+
+
+ {sponsors.map((s) => ( + + {/* eslint-disable-next-line @next/next/no-img-element */} + {s.name} + + ))} +
+
+ ); -} \ No newline at end of file +}