import type { PartnerSection } from "@/content/partners"; import { PartnerCard } from "@/components/partners/PartnerCard"; import { Separator } from "@/components/ui/separator"; type Props = { section: PartnerSection; showTitle?: boolean; }; export function PartnerSectionBlock({ section, showTitle = true }: Props) { return (
{section.tierLabel}
)}