Adding speakers section and gallery section

This commit is contained in:
2026-05-22 16:31:12 +07:00
parent 1e706758da
commit 9d5b8120a8
15 changed files with 249 additions and 4 deletions
+9 -3
View File
@@ -73,17 +73,23 @@ function CarouselRow({
);
}
export default function PartnersCarousel() {
export default function PartnersCarousel({
eyebrow = "Partners & Sponsors",
title = "Trusted by Industry Leaders",
}: {
eyebrow?: string;
title?: string;
}) {
const base = process.env.NEXT_PUBLIC_BASE_PATH || "";
return (
<section className="w-full py-16 lg:py-24 overflow-hidden border-t border-white/5">
<div className="mb-10 px-[var(--spacing-gutter)] max-w-hd mx-auto">
<p className="text-primary font-[var(--font-label-caps)] text-xs tracking-[0.3em] uppercase mb-3">
Partners &amp; Sponsors
{eyebrow}
</p>
<h2 className="text-on-surface font-[var(--font-display-lg)] text-2xl lg:text-4xl font-bold">
Trusted by Industry Leaders
{title}
</h2>
</div>