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.

FREE

Education100: Institutional Quick Facts

Centered header above a grid of quick-fact tiles, each pairing a large stat value with a label and an optional supporting line. Built for university "at a glance" or admissions pages that need to surface institutional numbers fast.

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/education100"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/education100"

This installs the block to components/beste/block/education100.tsx and the shadcn/ui badge component it depends on.

Quick start

The installed file exports education100Demo alongside the block: the exact props behind the preview above. Spread it to get a working quick-facts section in one line.

tsx
import { Education100, education100Demo } from "@/components/beste/block/education100";

export default function Page() {
  return <Education100 {...education100Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Education100 } from "@/components/beste/block/education100";

export default function Page() {
  return (
    <Education100
      badge={{ label: "At a Glance", variant: "secondary" }}
      heading="Quick facts"
      description="Key numbers that define who we are."
      facts={[
        { value: "1890", label: "Year Founded" },
        { value: "22,000+", label: "Students", description: "Undergraduate and graduate" },
        { value: "95%", label: "Placement Rate" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringSection heading; unlike the rest of this batch it is a required prop with no optional guard around it
descriptionstringSection intro text
factsQuickFact[][]Quick-fact tiles
classNamestringExtra classes for the outer <section>
ts
type QuickFact = {
  value: string;
  label: string;
  description?: string;
};

Behavior notes

More Education blocks

View all Education
FREE

education99

Global Partnerships Grid

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

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.

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.