Files
warmbly/docs/lib/layout.shared.tsx
T
Máté Mészáros (Laptop) c33f3fe8fe Docs using Fumadocs
2026-01-30 18:07:06 +01:00

28 lines
602 B
TypeScript

import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
import Image from 'next/image';
export function baseOptions(): BaseLayoutProps {
return {
nav: {
title: (
<div className="flex items-center gap-2">
<Image
src="/logo.svg"
alt="Warmbly"
width={32}
height={32}
className="dark:invert"
/>
<span className="font-semibold">Warmbly</span>
</div>
),
},
links: [
{
text: 'Dashboard',
url: 'https://app.warmbly.com',
},
],
};
}