Skip to content

Commit b0b3fce

Browse files
committed
enhance: DynamicContent to show only sponsors on sponsors page
1 parent ae52345 commit b0b3fce

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/app/sponsors/components/DynamicContent.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,13 @@ export default function DynamicContent() {
177177
</motion.section>
178178
{/* Planes de Patrocinio */}
179179
<SponsorshipPlans plans={plans} />
180-
{/* Patrocinadores anteriores */}
181-
<SponsorList sponsors={sponsorshipData.sponsors} />
180+
{/* Patrocinadores anteriores - Solo mostrar patrocinadores en la página de sponsors */}
181+
<SponsorList
182+
showSponsors={true}
183+
showOrganizers={false}
184+
showCommunities={false}
185+
sponsors={sponsorshipData.sponsors}
186+
/>
182187
{/* Formulario de contacto */}
183188
<FeatureGuard featureName="sponsorForm">
184189
<section id="contact-form" className="container mx-auto py-16 px-4">
@@ -203,4 +208,4 @@ export default function DynamicContent() {
203208
<FAQSection faqs={sponsorshipFAQs} />
204209
</>
205210
);
206-
}
211+
}

0 commit comments

Comments
 (0)