Staaarter

Mission and Vision Statement

Mission and vision statement section with side-by-side text blocks and an inspirational leadership quote (name, title, portrait) below. Perfect for university about pages.

By Staaarter Team
Education
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/mission-and-vision-statement.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/education/education4.tsx instead.

Usage

The file also exports education4Demo, 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 { Education4, education4Demo } from "@/components/blocks/education/education4";

export default function Page() {
  return <Education4 {...education4Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall uppercase label above the heading; only rendered when set.
headingReactNodenoneSection heading above the mission/vision columns.
missionstringnoneMission statement paragraph in the left column.
visionstringnoneVision statement paragraph in the right column.
quoteLeadershipQuotenoneLeadership quote card below the mission/vision columns.
classNamestringnoneExtra classes for the outer section element.

Types

type LeadershipQuote = {
  quote: string;
  name: string;
  title: string;
  avatar?: { src: string; alt: string };
};

Behavior notes

  • Mission and vision are two independent, equal-width columns that stack to a single column on mobile.
  • The leadership quote's avatar falls back to initials built from the first letter of up to two space-separated words in quote.name when no avatar image is supplied.
  • This is a static, read-only quote card; there is no carousel or rotation between multiple quotes.