import type {BaseLayoutProps} from 'fumadocs-ui/layouts/shared'; import {AppWindowIcon, GithubIcon, MessageSquareShareIcon} from 'lucide-react'; import Image from 'next/image'; import React from 'react'; /** * 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 = { themeSwitch: { enabled: false, }, nav: { title: (
Plunk Plunk
), }, links: [ { icon: , text: 'Dashboard', url: 'https://app.useplunk.com', }, { icon: , text: 'GitHub', url: 'https://github.com/useplunk/plunk', }, { icon: , text: 'Discord', url: 'https://useplunk.com/discord', }, ], };