ratkit 0.2.16

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
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 TITLE = "ratkit";
export function baseOptions(): BaseLayoutProps {
	return {
		searchToggle: {
			enabled: true,
		},
		nav: {
			enabled: false,
		},
		// see https://fumadocs.dev/docs/ui/navigation/links
		links: [],
	};
}