@farming-labs/next 0.0.5-beta.1 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.mjs +10 -1
- package/package.json +1 -1
package/dist/config.mjs
CHANGED
|
@@ -40,7 +40,16 @@ import docsConfig from "@/docs.config";
|
|
|
40
40
|
import { createDocsLayout, createDocsMetadata } from "@farming-labs/theme";
|
|
41
41
|
|
|
42
42
|
export const metadata = createDocsMetadata(docsConfig);
|
|
43
|
-
|
|
43
|
+
|
|
44
|
+
const DocsLayout = createDocsLayout(docsConfig);
|
|
45
|
+
|
|
46
|
+
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
47
|
+
return (
|
|
48
|
+
<>
|
|
49
|
+
<DocsLayout>{children}</DocsLayout>
|
|
50
|
+
</>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
44
53
|
`;
|
|
45
54
|
const DOCS_API_ROUTE_TEMPLATE = `\
|
|
46
55
|
${GENERATED_BANNER}
|