Footer

<vara-footer> supplies a restrained ending for landing pages. It shows your copyright and links, with an optional repository link and a small credit line.

Usage

<vara-footer
  copyright="Acme Inc. &copy; %year%"
  links="About|/about,Privacy|/privacy,Contact|/contact"
  github_href="https://github.com/example/project"
  github_label="Project on GitHub"
/>

Preview

Props

PropTypeDefaultDescription
copyrightstring""Optional copyright text. %year% (or % year %) uses the current year.
linksstring""Comma-separated Label|href records.
github_hrefstring""Optional repository destination.
github_labelstring"GitHub"Accessible repository-link label.
show_creditstring"true"Show the veta and veta-theme-vara credits.
containerstring"lg"One of: xs, sm, md, lg, xl, full.
classstring""Additional footer classes.

The copyright year

The %year% placeholder is replaced with the current year at build time. It tolerates whitespace (% year %) and any casing.

Internal links are deployment-aware. The GitHub link opens in a new tab with the appropriate rel protection.

Hiding the credit line

The credit line links to the veta and veta-theme-vara repositories. Set show_credit="false" when you prefer a fully silent footer:

<vara-footer
  copyright="&copy; %year% Acme Inc."
  show_credit="false"
/>