A global partnerships section showcasing partner institutions with location details and exchange statistics. Perfect for universities highlighting international collaborations.
Centered header (badge, heading, description) followed by an inline row of headline stats and a responsive grid of partner-institution cards, each pairing a Lucide icon with the institution's name and location.
Free block
This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.
Radix flavor
npx shadcn add "https://ui.beste.co/r/education99"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/education99"This installs the block to components/beste/block/education99.tsx and the shadcn/ui badge component it depends on.
The installed file exports education99Demo alongside the block: the exact props behind the preview above. Spread it to get a working partnerships section in one line.
import { Education99, education99Demo } from "@/components/beste/block/education99";
export default function Page() {
return <Education99 {...education99Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Globe } from "lucide-react";
import { Education99 } from "@/components/beste/block/education99";
export default function Page() {
return (
<Education99
badge={{ label: "Global Network", variant: "secondary" }}
heading="International partnerships"
description="We collaborate with leading institutions worldwide."
stats={[
{ label: "Countries", value: "30+" },
{ label: "Partner Institutions", value: "80+" },
]}
organizations={[
{ name: "University of Oxford", location: "United Kingdom" },
{ name: "ETH Zurich", location: "Switzerland", icon: Globe },
{ name: "CERN", location: "Switzerland", icon: Globe },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Badge above the heading |
heading | string | – | Section heading |
description | string | – | Section intro text |
stats | StatItem[] | [] | Headline numbers rendered as a centered inline row above the grid |
organizations | OrganizationItem[] | [] | Partner institution cards |
className | string | – | Extra classes for the outer <section> |
type StatItem = { label: string; value: string };
type OrganizationItem = {
id?: string;
name: string;
location: string;
icon?: LucideIcon;
};organizations.length: 3 columns once there are 5 or more items, otherwise 4 when the count divides evenly by 4, 3 when it divides evenly by 3, and 2 otherwise.columnCount is 4, the ternary produces the class string "lg:grid-cols-" with no trailing digit. Tailwind doesn't recognize this class, so a 4-item (or 8-, 12-item) organizations list silently falls back to the sm:grid-cols-2 base at the lg breakpoint instead of actually showing 4 columns.stats renders as a horizontal flex row (not a grid), centered and gapped, and is skipped entirely when the array is empty.Building icon when icon is omitted; the card's key is org.id ?? org.name rather than the array index.education78
A grid of faculty testimonials with instructor photos, quotes about their teaching philosophy, and years of experience. Perfect for building trust in educational institutions.
education86
A social media connection section with platform cards showing handles and follower counts. Perfect for university marketing and student community building.
education100
A quick facts grid displaying key institutional statistics with values, labels, and descriptions. Perfect for university at-a-glance pages and prospective student information.
education22
A faculty spotlight featuring professor photo, biography, research interests, publications count, and inspirational quote. Perfect for showcasing instructors and academic staff.
education79
A social proof section displaying key stats like ratings, enrollment numbers, and completion rates alongside a featured student testimonial. Perfect for course landing pages and enrollment campaigns.
education91
A mission and vision statement section with side-by-side text blocks and an inspirational leadership quote. Perfect for university about pages and institutional branding.