Lotus
Type to search documentation.

Getting Started

Footer

Configure copyright text and grouped footer links.

footer controls the lower site chrome.

footer: {
copyright: 'Copyright © 2026 Prosefly.',
sections: [
{
title: 'Docs',
links: [
{ label: 'Overview', href: '/docs/overview/' },
{ label: 'Installation', href: '/docs/installation/' },
],
},
{
title: 'Project',
links: [
{
label: 'GitHub',
href: 'https://github.com/prosefly/astro-theme-lotus',
external: true,
},
],
},
],
}

Credits

Lotus shows a small Built with Lotus credit in the footer by default. Disable it with the top-level credits option.

credits: false

copyright renders under the footer brand.

copyright: 'Copyright © 2026 Prosefly.'

Sections

sections is an ordered list of link groups.

sections: [
{
title: 'Components',
links: [
{ label: 'Icon', href: '/docs/components/icon/' },
{ label: 'Badge', href: '/docs/components/badge/' },
],
},
]

Each link supports label, href, and optional external.

Set sections to an empty array when the footer should only show the brand and copyright.

footer: {
copyright: 'Copyright © 2026 Prosefly.',
sections: [],
}

Last updated Jul 18, 2026

Contributors