File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared' ;
2+ import { BookOpen , SquareTerminal } from 'lucide-react' ;
23import { gitConfig } from './shared' ;
34
45export 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 } ,
You can’t perform that action at this time.
0 commit comments