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

Compact single-row footer that packs a logo, a run of horizontal nav links, and a copyright line into one bar, collapsing to a stacked layout on mobile. The leanest footer in the set, with no social icons, columns, or forms.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Footer9, footer9Demo } from "@/components/beste/block/footer9";

export default function Layout() {
  return <Footer9 {...footer9Demo} />;
}

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

tsx
import { Footer9 } from "@/components/beste/block/footer9";

export default function Layout() {
  return (
    <Footer9
      logo={{ text: "Northwind", href: "/" }}
      links={[
        { label: "About", href: "/about" },
        { label: "Pricing", href: "/pricing" },
        { label: "Contact", href: "/contact" },
      ]}
      copyright="© 2026 Northwind. All rights reserved."
    />
  );
}

Props

PropTypeDefaultDescription
logoLogoWordmark link; the whole logo block is skipped when logo.text is unset
linksNavLink[][]Inline nav links, rendered in order
copyrightstringCopyright line
classNamestringExtra classes for the outer <footer>
ts
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };

Behavior notes

More Footer blocks

View all Footer
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.

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

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

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

footer108

Oversized Wordmark Footer

Footer with a brand intro and three link columns over a copyright bar, closed by one oversized wordmark cropped at low opacity so its lower third bleeds off the bottom edge.

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.