mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-19 02:34:37 -05:00
21 lines
516 B
TypeScript
21 lines
516 B
TypeScript
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'
|
|
|
|
/**
|
|
* Shared layout configurations
|
|
*
|
|
* you can customise layouts individually from:
|
|
* Home Layout: app/(home)/layout.tsx
|
|
* Docs Layout: app/docs/layout.tsx
|
|
*/
|
|
export const baseOptions: BaseLayoutProps = {
|
|
nav: {
|
|
title: (
|
|
<>
|
|
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" aria-label="Logo">
|
|
<circle cx={12} cy={12} r={12} fill="currentColor" />
|
|
</svg>
|
|
My App
|
|
</>
|
|
),
|
|
},
|
|
} |