mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
/**
|
|
* Shared layout configurations
|
|
*
|
|
* you can configure layouts individually from:
|
|
* Home Layout: app/(home)/layout.tsx
|
|
* Docs Layout: app/docs/layout.tsx
|
|
*/
|
|
export const baseOptions: BaseLayoutProps = {
|
|
nav: {
|
|
title: "Better-T-Stack",
|
|
enabled: false,
|
|
},
|
|
githubUrl: "https://github.com/AmanVarshney01/create-better-t-stack",
|
|
};
|