import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'; // The Warmbly mark, same single path as site/src/components/Logo.astro, rendered // monochrome via currentColor so it is black in light mode and white in dark // mode automatically (no color version, no invert filter). function Mark() { return ( ); } export function baseOptions(): BaseLayoutProps { return { nav: { title: (
Warmbly
), }, links: [ { text: 'Dashboard', url: 'https://app.warmbly.com', }, ], }; }