mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
28 lines
602 B
TypeScript
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',
|
|
},
|
|
],
|
|
};
|
|
}
|