Global Partnerships Grid
Global partnerships section showcasing partner institutions with location details and exchange statistics, e.g. students exchanged per year. Perfect for universities highlighting international collaborations.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/global-partnerships-grid.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/education/education3.tsx instead.
Usage
The file also exports education3Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Education3, education3Demo } from "@/components/blocks/education/education3"; export default function Page() { return <Education3 {...education3Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | none | Small uppercase label above the heading; only rendered when set. |
| heading | ReactNode | none | Section heading, centered above the partners grid. |
| description | string | undefined | Centered intro text below the heading. |
| partners | PartnerInstitution[] | none | Partner cards rendered in a responsive grid, up to 3 columns on desktop. |
| className | string | none | Extra classes for the outer section element. |
Types
type PartnerInstitution = { name: string; location: string; exchangeStudents: string; focus?: string; };
Behavior notes
- partners lays out 1 column on mobile, 2 on tablet, and 3 on desktop; the grid reflows to additional rows for any item count rather than shrinking column width.
- focus is optional per partner; a card without it simply omits that paragraph and moves straight to the exchange-students line.
- The location pin and exchange-count icons are decorative (aria-hidden) since the adjacent text already conveys the same information.
- This is a static informational grid; no map, filter, or live data source is wired up.
More Education Blocks
View all →academy-course-cards
Academy Course Cards
Academy section with an eyebrow, a two-column heading, and three course cards that float a lesson checklist above a category label, title, and lesson count.
institutional-quick-facts
Institutional Quick Facts
Quick facts grid displaying key institutional statistics with a large value, label, and short description per tile.
mission-and-vision-statement
Mission and Vision Statement
Side-by-side mission and vision text blocks with an inspirational leadership quote below.
social-media-links-grid
Social Media Links Grid
Social media connection section with platform cards showing handle and follower count.
education-social-proof
Education Social Proof
Social proof section pairing key stats (rating, enrollment, completion rate) with a featured student testimonial.
faculty-testimonials-grid
Faculty Testimonials Grid
Grid of faculty testimonials with instructor photos, teaching-philosophy quotes, and years of experience.