Footer

Work in progress
The footer component represents the bottom section of a web page.
Overview

Usage



  <style>
  .footer-simple {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    background: var(--color-surface);
    border-top: 1px solid var(--color-outline-variant);
    gap: .5rem;
    padding-block: 1rem;
    flex-wrap: wrap;
  }
  .text-body-large {
    margin-block-end: 0 !important;
  }
</style>

  <div class="footer-simple">
    <div class="text-body-large">
      © 2026 Peacock.
    </div>
    <div class="text-body-large">
      All rights reserved.
    </div>
  </div>

On this page

Sponsor