Global Partnerships Grid

Global Network

International Partnerships

We collaborate with leading institutions worldwide, providing students with global learning opportunities.

45+

Countries

150+

Partner Institutions

500+

Annual Exchanges

University of Oxford

United Kingdom

Technical University of Munich

Germany

National University of Singapore

Singapore

ETH Zurich

Switzerland

CERN

Switzerland

Microsoft Research

United States

About this block

Global Partnerships GridFREE

A global partnerships section showcasing partner institutions with location details and exchange statistics. Perfect for universities highlighting international collaborations.

Education99: Global Partnerships Grid

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.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/education99"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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 },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringSection heading
descriptionstringSection intro text
statsStatItem[][]Headline numbers rendered as a centered inline row above the grid
organizationsOrganizationItem[][]Partner institution cards
classNamestringExtra classes for the outer <section>
ts
type StatItem = { label: string; value: string };

type OrganizationItem = {
  id?: string;
  name: string;
  location: string;
  icon?: LucideIcon;
};

Behavior notes

  • The organization grid uses dynamic column-count logic keyed on 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.
  • That logic has a bug worth knowing about: when the computed 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.
  • Each organization card falls back to the Building icon when icon is omitted; the card's key is org.id ?? org.name rather than the array index.

More Education blocks

View all Education
PRO

education78

Faculty Testimonials Grid

A grid of faculty testimonials with instructor photos, quotes about their teaching philosophy, and years of experience. Perfect for building trust in educational institutions.

FREE

education86

Social Media Links Grid

A social media connection section with platform cards showing handles and follower counts. Perfect for university marketing and student community building.

FREE

education100

Institutional Quick Facts

A quick facts grid displaying key institutional statistics with values, labels, and descriptions. Perfect for university at-a-glance pages and prospective student information.

PRO

education22

Faculty Profile Spotlight

A faculty spotlight featuring professor photo, biography, research interests, publications count, and inspirational quote. Perfect for showcasing instructors and academic staff.

PRO

education79

Education Social Proof

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.

PRO

education91

Mission and Vision Statement

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.