-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathlayout.config.tsx
More file actions
30 lines (28 loc) · 698 Bytes
/
Copy pathlayout.config.tsx
File metadata and controls
30 lines (28 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
import Image from "next/image";
import logo from "@/assets/logo.svg";
/**
* Shared layout configurations
*
* you can configure layouts individually from:
* Home Layout: app/(home)/layout.tsx
* Docs Layout: app/docs/layout.tsx
*/
export const baseOptions: BaseLayoutProps = {
githubUrl: "https://github.com/Rel1cx/eslint-react",
links: [],
nav: {
title: (
<div className="flex items-between gap-2.5 min-w-max">
<Image
alt="logo"
height="20"
quality={100}
src={logo}
width="20"
/>
<span>ESLint React</span>
</div>
),
},
};