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: {
|
2026-03-10 03:33:57 +05:30
|
|
|
title: (
|
|
|
|
|
<>
|
2026-03-10 16:17:12 +05:30
|
|
|
<Image src="/icon-128.svg" alt="SurfSense" width={24} height={24} className="dark:invert" />
|
2026-03-10 03:33:57 +05:30
|
|
|
SurfSense Docs
|
|
|
|
|
</>
|
|
|
|
|
),
|
2025-07-27 10:05:37 -07:00
|
|
|
},
|
2026-02-27 02:36:18 +05:30
|
|
|
githubUrl: "https://github.com/MODSetter/SurfSense",
|
2025-07-27 10:05:37 -07:00
|
|
|
};
|