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.

FREE

Fully centered, vertically stacked footer: logo, then navigation links, then social icon links, then copyright, one below the other. Suited to portfolios and personal sites that want a symmetrical footer without column layouts.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Footer11, footer11Demo } from "@/components/beste/block/footer11";

export default function Layout() {
  return <Footer11 {...footer11Demo} />;
}

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

tsx
import { Footer11 } from "@/components/beste/block/footer11";

export default function Layout() {
  return (
    <Footer11
      logo={{ text: "Jordan Lane", href: "/" }}
      navLinks={[
        { label: "Work", href: "/work" },
        { label: "About", href: "/about" },
        { label: "Contact", href: "/contact" },
      ]}
      socialLinks={[
        { icon: "twitter", href: "https://twitter.com/jordanlane", label: "Twitter" },
        { icon: "github", href: "https://github.com/jordanlane", label: "GitHub" },
      ]}
      copyright="© 2026 Jordan Lane."
    />
  );
}

Props

PropTypeDefaultDescription
logoLogoWordmark link; hidden entirely when logo.text is unset
navLinksNavLink[][]Centered nav links, shown above the social row
socialLinksSocialLink[][]Social icon links, shown below navLinks
copyrightstringCopyright line, shown last
classNamestringExtra classes for the outer <footer>
ts
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };
type SocialLink = {
  icon: "twitter" | "github" | "linkedin";
  href?: string;
  label?: string;
};

Behavior notes

More Footer blocks

View all Footer
FREE

footer23

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.

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.

FREE

footer9

Minimal Inline Footer

Compact single-row footer with logo, horizontal navigation links, and copyright text. Perfect for landing pages and minimal websites that need simple site-wide navigation.

FREE

footer10

Split Brand Footer

Two-column footer with brand logo, tagline, and copyright on left, navigation links on right. Perfect for startups and SaaS products wanting clean brand presentation.

FREE

footer21

Compact E-commerce Footer

Centered minimal footer with horizontal navigation, trust badges, and payment method icons. Perfect for smaller online stores wanting a clean checkout-focused layout.