Social Media Showcase Footer

Centered footer with prominent heading, large circular social media icon buttons, and minimal navigation. Perfect for creators and influencers driving social engagement.

FREE

Centered footer built around a "follow us" callout: logo, then a heading and description, then a row of large circular social icon buttons, then a secondary nav row and copyright. Aimed at creators and influencer brands driving social follows rather than site navigation.

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

Base UI flavor

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

This installs the block to components/beste/block/footer23.tsx and its dependencies.

Quick start

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

tsx
import { Footer23, footer23Demo } from "@/components/beste/block/footer23";

export default function Layout() {
  return <Footer23 {...footer23Demo} />;
}

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

tsx
import { Footer23 } from "@/components/beste/block/footer23";

export default function Layout() {
  return (
    <Footer23
      logo={{ text: "Studio Nine", href: "/" }}
      heading="Come say hi on social"
      description="New drops and behind-the-scenes posts every week."
      socialLinks={[
        { icon: "instagram", href: "https://instagram.com/studionine", label: "Instagram" },
        { icon: "youtube", href: "https://youtube.com/studionine", label: "YouTube" },
        { icon: "twitter", href: "https://twitter.com/studionine", label: "Twitter" },
      ]}
      links={[
        { label: "About", href: "/about" },
        { label: "Contact", href: "/contact" },
      ]}
      copyright="© 2026 Studio Nine."
    />
  );
}

Props

PropTypeDefaultDescription
logoLogoWordmark link; hidden entirely when logo.text is unset
headingstringCallout heading above the social row
descriptionstringSupporting line under the heading
socialLinksSocialLink[][]Large circular social icon buttons
linksNavLink[][]Secondary nav row, shown below the social icons
copyrightstringCopyright line, shown last
classNamestringExtra classes for the outer <footer>
ts
type Logo = { text?: string; href?: string };
type SocialLink = {
  icon: "twitter" | "github" | "linkedin" | "facebook" | "instagram" | "youtube";
  href?: string;
  label?: string;
};
type NavLink = { label: string; href?: string };

Behavior notes

More Footer blocks

View all Footer
FREE

footer11

Centered Social Footer

Vertically stacked footer with centered logo, navigation links, social media icons, and copyright. Perfect for portfolios and personal brands wanting a symmetrical layout.

PRO

footer15

Social Bar Multi-Column Footer

Four-column navigation footer with brand description and dedicated social media icon row in the bottom section. Perfect for media companies and brands with strong social presence.

PRO

footer121

Minimal Centered Footer

A compact centered footer with a lowercase wordmark, a short tagline, an uppercase link row, a social row over a hairline rule, and a copyright line.

PRO

footer113

Big Logotype Footer

Footer led by a full-width oversized wordmark, then a newsletter field with an arrow submit and socials beside four titled link columns, closed by a quiet copyright line.

PRO

footer28

Creative Agency Portfolio Footer

Showcase footer with company stats, awards recognition section, navigation links, and trusted client logos. Perfect for design studios and creative agencies displaying credentials.

PRO

footer100

App Showcase Footer

Mobile app promotion footer with phone mockup screenshot, feature highlights, download stats, app store badges, and QR code. Perfect for mobile app marketing pages.