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

Campus social-media hub for university marketing pages: a badge, a required heading, and a description above a two-column grid of clickable platform cards showing handle and follower count.

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

Base UI flavor

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

This installs the block to components/beste/block/education86.tsx and the Badge and Button shadcn/ui primitives declared for it.

Quick start

The installed file exports education86Demo alongside the block: the exact props behind the preview above. Spread it to get a working social grid in one line.

tsx
import { Education86, education86Demo } from "@/components/beste/block/education86";

export default function Page() {
  return <Education86 {...education86Demo} />;
}

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

tsx
import { Education86 } from "@/components/beste/block/education86";

export default function Page() {
  return (
    <Education86
      badge={{ label: "Connect", variant: "outline" }}
      heading="Follow Us on Social Media"
      description="Stay updated with campus news, events, and student life."
      socialLinks={[
        { platform: "Instagram", handle: "@universitylife", url: "https://instagram.com/universitylife", followers: "125K" },
        { platform: "LinkedIn", handle: "University", url: "https://linkedin.com/company/university", followers: "245K" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional pill badge above the heading
headingstringSection heading (required, unlike most section components)
descriptionstringSupporting text under the heading
socialLinksSocialLink[][]Platform cards rendered in a two-column grid
classNamestringExtra classes for the outer <section>
ts
type SocialLink = {
  platform: string;
  handle: string;
  url: string;
  followers?: 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.

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.

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

education25

Learner Leaderboard

A gamified leaderboard displaying top learners with rankings, scores, and badges across weekly, monthly, and all-time periods. Perfect for competitive learning platforms and student engagement.

PRO

education101

Academy Course Cards

An academy section with an eyebrow over a hairline rule, a two-column heading, and three course cards that each float a live progress checklist above a category, title, and lesson count.