SurfSense/surfsense_web/app/layout.config.tsx

20 lines
388 B
TypeScript
Raw Normal View History

import Image from "next/image";
2025-07-27 10:05:37 -07:00
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
2025-04-22 02:24:13 -07:00
export const baseOptions: BaseLayoutProps = {
2025-07-27 10:05:37 -07:00
nav: {
title: (
<>
<Image
src="/icon-128.svg"
alt="SurfSense"
width={24}
height={24}
className="dark:invert"
/>
SurfSense Docs
</>
),
2025-07-27 10:05:37 -07:00
},
githubUrl: "https://github.com/MODSetter/SurfSense",
2025-07-27 10:05:37 -07:00
};