Skip to content

Commit 9c26e45

Browse files
committed
icons
1 parent e1c4dff commit 9c26e45

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

website/src/lib/layout.shared.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
2+
import { BookOpen, SquareTerminal } from 'lucide-react';
23
import { gitConfig } from './shared';
34

45
export function baseOptions(): BaseLayoutProps {
@@ -13,11 +14,21 @@ export function baseOptions(): BaseLayoutProps {
1314
githubUrl: `https://github.com/${gitConfig.user}/${gitConfig.repo}`,
1415
links: [
1516
{
16-
text: 'Documentation',
17+
text: (
18+
<span className="inline-flex items-center gap-1.5">
19+
<BookOpen className="size-4" />
20+
Documentation
21+
</span>
22+
),
1723
url: '/docs',
1824
},
1925
{
20-
text: 'Playground',
26+
text: (
27+
<span className="inline-flex items-center gap-1.5">
28+
<SquareTerminal className="size-4" />
29+
Playground
30+
</span>
31+
),
2132
url: 'https://rbby.dev/gnata-sqlite/playground',
2233
external: true,
2334
},

0 commit comments

Comments
 (0)