Global Partnerships Grid

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

FREE

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

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

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.

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.