X Enterprises
nuxt-x-marketing

LayoutFooter

Dark full-featured footer with brand column, social links, multi-column link grid, optional newsletter form, and legal bar.

LayoutFooter

A full-featured dark footer. The left brand column shows the logo, description, and social links. Up to four additional link columns render in a responsive grid. An optional inline newsletter form can be toggled on. A bottom bar renders copyright text and legal links.

Components

<XMarkLayoutFooter />

A full-featured dark footer. The left brand column shows the logo, description, and social links. Up to four additional link columns render in a responsive grid. An optional inline newsletter form can be toggled on. A bottom bar renders copyright text and legal links.

<XMarkLayoutFooter
  :logo="{ src: '/logo-white.svg', alt: 'Acme' }"
  description="The platform that helps teams ship faster."
  :social="[
    { name: 'Twitter', icon: 'i-lucide-twitter', href: 'https://twitter.com/acme' },
    { name: 'GitHub', icon: 'i-lucide-github', href: 'https://github.com/acme' },
  ]"
  :columns="[
    { title: 'Product', links: [{ label: 'Features', to: '/features' }, { label: 'Pricing', to: '/pricing' }] },
    { title: 'Company', links: [{ label: 'About', to: '/about' }, { label: 'Blog', to: '/blog' }] },
  ]"
  :has-newsletter="true"
  newsletter-title="Stay in the loop"
  newsletter-description="Get product updates and news."
  :legal-links="[
    { label: 'Privacy Policy', to: '/privacy' },
    { label: 'Terms', to: '/terms' },
  ]"
  copyright="© 2025 Acme Inc."
  @newsletter-submit="onNewsletterSubmit"
/>

Props

PropTypeDefaultDescription
logoObjectnullLogo object { src, alt? }
descriptionString''Brand tagline below the logo
socialArray[]Social links [{ name, icon, href }]
columnsArray[]Link columns [{ title, links: [{ label, to }] }]
legalLinksArray[]Bottom-bar legal links [{ label, to }]
copyrightStringCurrent year stringCopyright notice
hasNewsletterBooleanfalseShow inline newsletter form
newsletterTitleString'Subscribe to our newsletter'Newsletter heading
newsletterDescriptionString'Get the latest updates and news.'Newsletter subtext

Emits

EventPayloadDescription
newsletter-submitemail: stringEmitted when newsletter form is submitted

AI Context

category: Layout
package: "@xenterprises/nuxt-x-marketing"
components:
  - XMarkLayoutFooter
use-when: >
  Adding a full-featured dark footer to a marketing site with logo, social
  links, link columns, and optional newsletter form. Use at the bottom of
  every page layout.
typical-page-section: Bottom of every page.
Copyright © 2026