SurfSense/surfsense_web/app/layout.config.tsx

14 lines
359 B
TypeScript
Raw Normal View History

2025-07-27 10:05:37 -07:00
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
2026-03-10 16:17:12 +05:30
import Image from "next/image";
2025-04-22 02:24:13 -07:00
export const baseOptions: BaseLayoutProps = {
2025-07-27 10:05:37 -07:00
nav: {
title: (
<>
2026-03-10 16:17:12 +05:30
<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
};