@hanzo/docs-create-app 16.0.50
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/LICENSE +21 -0
- package/README.md +11 -0
- package/dist/auto-install-CenyMuK7.js +33 -0
- package/dist/auto-install-CenyMuK7.js.map +1 -0
- package/dist/bin.d.ts +1 -0
- package/dist/bin.js +165 -0
- package/dist/bin.js.map +1 -0
- package/dist/constants-BkYWkLHa.d.ts +22 -0
- package/dist/constants-BkYWkLHa.d.ts.map +1 -0
- package/dist/constants-CbNzssp2.js +957 -0
- package/dist/constants-CbNzssp2.js.map +1 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +60 -0
- package/dist/index.js.map +1 -0
- package/dist/plugins/biome.base.d.ts +40 -0
- package/dist/plugins/biome.base.d.ts.map +1 -0
- package/dist/plugins/biome.base.js +38 -0
- package/dist/plugins/biome.base.js.map +1 -0
- package/dist/plugins/biome.d.ts +7 -0
- package/dist/plugins/biome.d.ts.map +1 -0
- package/dist/plugins/biome.js +33 -0
- package/dist/plugins/biome.js.map +1 -0
- package/dist/plugins/biome.next.d.ts +41 -0
- package/dist/plugins/biome.next.d.ts.map +1 -0
- package/dist/plugins/biome.next.js +44 -0
- package/dist/plugins/biome.next.js.map +1 -0
- package/dist/plugins/eslint.d.ts +7 -0
- package/dist/plugins/eslint.d.ts.map +1 -0
- package/dist/plugins/eslint.js +47 -0
- package/dist/plugins/eslint.js.map +1 -0
- package/dist/plugins/next-use-src.d.ts +10 -0
- package/dist/plugins/next-use-src.d.ts.map +1 -0
- package/dist/plugins/next-use-src.js +37 -0
- package/dist/plugins/next-use-src.js.map +1 -0
- package/dist/plugins/orama-cloud.d.ts +7 -0
- package/dist/plugins/orama-cloud.d.ts.map +1 -0
- package/dist/plugins/orama-cloud.js +296 -0
- package/dist/plugins/orama-cloud.js.map +1 -0
- package/package.json +63 -0
- package/template/+next+fuma-docs-mdx/app/(home)/layout.tsx +6 -0
- package/template/+next+fuma-docs-mdx/app/(home)/page.tsx +16 -0
- package/template/+next+fuma-docs-mdx/app/api/search/route.ts +7 -0
- package/template/+next+fuma-docs-mdx/app/docs/[[...slug]]/page.tsx +57 -0
- package/template/+next+fuma-docs-mdx/app/docs/layout.tsx +11 -0
- package/template/+next+fuma-docs-mdx/app/global.css +3 -0
- package/template/+next+fuma-docs-mdx/app/layout.tsx +17 -0
- package/template/+next+fuma-docs-mdx/app/llms-full.txt/route.ts +10 -0
- package/template/+next+fuma-docs-mdx/app/llms.mdx/docs/[[...slug]]/route.ts +20 -0
- package/template/+next+fuma-docs-mdx/app/llms.txt/route.ts +13 -0
- package/template/+next+fuma-docs-mdx/app/og/docs/[...slug]/route.tsx +27 -0
- package/template/+next+fuma-docs-mdx/components/ai/page-actions.tsx +240 -0
- package/template/+next+fuma-docs-mdx/content/docs/index.mdx +13 -0
- package/template/+next+fuma-docs-mdx/content/docs/test.mdx +17 -0
- package/template/+next+fuma-docs-mdx/example.gitignore +26 -0
- package/template/+next+fuma-docs-mdx/lib/cn.ts +1 -0
- package/template/+next+fuma-docs-mdx/lib/layout.shared.tsx +17 -0
- package/template/+next+fuma-docs-mdx/lib/source.ts +27 -0
- package/template/+next+fuma-docs-mdx/mdx-components.tsx +9 -0
- package/template/+next+fuma-docs-mdx/next.config.mjs +18 -0
- package/template/+next+fuma-docs-mdx/package.json +31 -0
- package/template/+next+fuma-docs-mdx/postcss.config.mjs +7 -0
- package/template/+next+fuma-docs-mdx/source.config.ts +23 -0
- package/template/+next+fuma-docs-mdx/tsconfig.json +36 -0
- package/template/+next+fuma-docs-mdx+static/README.md +45 -0
- package/template/+next+fuma-docs-mdx+static/app/(home)/layout.tsx +6 -0
- package/template/+next+fuma-docs-mdx+static/app/(home)/page.tsx +16 -0
- package/template/+next+fuma-docs-mdx+static/app/api/search/route.ts +9 -0
- package/template/+next+fuma-docs-mdx+static/app/docs/[[...slug]]/page.tsx +47 -0
- package/template/+next+fuma-docs-mdx+static/app/docs/layout.tsx +11 -0
- package/template/+next+fuma-docs-mdx+static/app/global.css +3 -0
- package/template/+next+fuma-docs-mdx+static/app/layout.tsx +17 -0
- package/template/+next+fuma-docs-mdx+static/app/llms-full.txt/route.ts +10 -0
- package/template/+next+fuma-docs-mdx+static/app/og/docs/[...slug]/route.tsx +27 -0
- package/template/+next+fuma-docs-mdx+static/components/provider.tsx +8 -0
- package/template/+next+fuma-docs-mdx+static/components/search.tsx +46 -0
- package/template/+next+fuma-docs-mdx+static/content/docs/index.mdx +13 -0
- package/template/+next+fuma-docs-mdx+static/content/docs/test.mdx +17 -0
- package/template/+next+fuma-docs-mdx+static/example.gitignore +26 -0
- package/template/+next+fuma-docs-mdx+static/lib/layout.shared.tsx +9 -0
- package/template/+next+fuma-docs-mdx+static/lib/source.ts +26 -0
- package/template/+next+fuma-docs-mdx+static/mdx-components.tsx +9 -0
- package/template/+next+fuma-docs-mdx+static/next.config.mjs +11 -0
- package/template/+next+fuma-docs-mdx+static/package.json +32 -0
- package/template/+next+fuma-docs-mdx+static/postcss.config.mjs +7 -0
- package/template/+next+fuma-docs-mdx+static/source.config.ts +23 -0
- package/template/+next+fuma-docs-mdx+static/tsconfig.json +36 -0
- package/template/+next+hanzo-docs-mdx/README.md +43 -0
- package/template/+next+hanzo-docs-mdx/app/(home)/layout.tsx +6 -0
- package/template/+next+hanzo-docs-mdx/app/(home)/page.tsx +16 -0
- package/template/+next+hanzo-docs-mdx/app/api/search/route.ts +7 -0
- package/template/+next+hanzo-docs-mdx/app/docs/[[...slug]]/page.tsx +61 -0
- package/template/+next+hanzo-docs-mdx/app/docs/layout.tsx +11 -0
- package/template/+next+hanzo-docs-mdx/app/global.css +3 -0
- package/template/+next+hanzo-docs-mdx/app/layout.tsx +17 -0
- package/template/+next+hanzo-docs-mdx/app/llms-full.txt/route.ts +10 -0
- package/template/+next+hanzo-docs-mdx/app/og/docs/[...slug]/route.tsx +27 -0
- package/template/+next+hanzo-docs-mdx/content/docs/index.mdx +13 -0
- package/template/+next+hanzo-docs-mdx/content/docs/test.mdx +17 -0
- package/template/+next+hanzo-docs-mdx/example.gitignore +26 -0
- package/template/+next+hanzo-docs-mdx/lib/cn.ts +1 -0
- package/template/+next+hanzo-docs-mdx/lib/layout.shared.tsx +9 -0
- package/template/+next+hanzo-docs-mdx/lib/source.ts +27 -0
- package/template/+next+hanzo-docs-mdx/mdx-components.tsx +9 -0
- package/template/+next+hanzo-docs-mdx/next.config.mjs +18 -0
- package/template/+next+hanzo-docs-mdx/package.json +31 -0
- package/template/+next+hanzo-docs-mdx/postcss.config.mjs +5 -0
- package/template/+next+hanzo-docs-mdx/source.config.ts +23 -0
- package/template/+next+hanzo-docs-mdx/tsconfig.json +36 -0
- package/template/+orama-cloud/@app/components/search.tsx +54 -0
- package/template/+orama-cloud/@app/lib/export-static-indexes.ts +14 -0
- package/template/+orama-cloud/@root/.env.example +6 -0
- package/template/react-router/README.md +12 -0
- package/template/react-router/app/app.css +3 -0
- package/template/react-router/app/docs/page.tsx +51 -0
- package/template/react-router/app/docs/search.ts +12 -0
- package/template/react-router/app/lib/layout.shared.tsx +9 -0
- package/template/react-router/app/lib/source.ts +7 -0
- package/template/react-router/app/root.tsx +73 -0
- package/template/react-router/app/routes/home.tsx +30 -0
- package/template/react-router/app/routes.ts +7 -0
- package/template/react-router/content/docs/index.mdx +32 -0
- package/template/react-router/content/docs/meta.json +3 -0
- package/template/react-router/content/docs/test.mdx +24 -0
- package/template/react-router/example.gitignore +7 -0
- package/template/react-router/package.json +35 -0
- package/template/react-router/public/favicon.ico +0 -0
- package/template/react-router/react-router.config.ts +23 -0
- package/template/react-router/source.config.ts +7 -0
- package/template/react-router/tsconfig.json +23 -0
- package/template/react-router/vite.config.ts +17 -0
- package/template/react-router-spa/README.md +12 -0
- package/template/react-router-spa/app/app.css +3 -0
- package/template/react-router-spa/app/components/search.tsx +45 -0
- package/template/react-router-spa/app/docs/page.tsx +53 -0
- package/template/react-router-spa/app/docs/search.ts +10 -0
- package/template/react-router-spa/app/lib/layout.shared.tsx +9 -0
- package/template/react-router-spa/app/lib/source.ts +7 -0
- package/template/react-router-spa/app/root.tsx +74 -0
- package/template/react-router-spa/app/routes/home.tsx +30 -0
- package/template/react-router-spa/app/routes.ts +7 -0
- package/template/react-router-spa/content/docs/index.mdx +32 -0
- package/template/react-router-spa/content/docs/test.mdx +24 -0
- package/template/react-router-spa/example.gitignore +7 -0
- package/template/react-router-spa/package.json +36 -0
- package/template/react-router-spa/public/favicon.ico +0 -0
- package/template/react-router-spa/react-router.config.ts +23 -0
- package/template/react-router-spa/serve.json +3 -0
- package/template/react-router-spa/source.config.ts +7 -0
- package/template/react-router-spa/tsconfig.json +23 -0
- package/template/react-router-spa/vite.config.ts +17 -0
- package/template/tanstack-start/README.md +12 -0
- package/template/tanstack-start/content/docs/index.mdx +31 -0
- package/template/tanstack-start/content/docs/test.mdx +12 -0
- package/template/tanstack-start/example.gitignore +18 -0
- package/template/tanstack-start/package.json +38 -0
- package/template/tanstack-start/source.config.ts +7 -0
- package/template/tanstack-start/src/components/not-found.tsx +28 -0
- package/template/tanstack-start/src/lib/layout.shared.tsx +9 -0
- package/template/tanstack-start/src/lib/source.ts +9 -0
- package/template/tanstack-start/src/router.tsx +12 -0
- package/template/tanstack-start/src/routes/__root.tsx +45 -0
- package/template/tanstack-start/src/routes/api/search.ts +16 -0
- package/template/tanstack-start/src/routes/docs/$.tsx +72 -0
- package/template/tanstack-start/src/routes/index.tsx +26 -0
- package/template/tanstack-start/src/styles/app.css +3 -0
- package/template/tanstack-start/tsconfig.json +24 -0
- package/template/tanstack-start/vite.config.ts +33 -0
- package/template/tanstack-start-spa/README.md +12 -0
- package/template/tanstack-start-spa/content/docs/index.mdx +31 -0
- package/template/tanstack-start-spa/content/docs/test.mdx +12 -0
- package/template/tanstack-start-spa/example.gitignore +18 -0
- package/template/tanstack-start-spa/package.json +41 -0
- package/template/tanstack-start-spa/source.config.ts +7 -0
- package/template/tanstack-start-spa/src/components/not-found.tsx +28 -0
- package/template/tanstack-start-spa/src/components/search.tsx +46 -0
- package/template/tanstack-start-spa/src/lib/layout.shared.tsx +9 -0
- package/template/tanstack-start-spa/src/lib/source.ts +9 -0
- package/template/tanstack-start-spa/src/router.tsx +12 -0
- package/template/tanstack-start-spa/src/routes/__root.tsx +46 -0
- package/template/tanstack-start-spa/src/routes/api/search.ts +16 -0
- package/template/tanstack-start-spa/src/routes/docs/$.tsx +74 -0
- package/template/tanstack-start-spa/src/routes/index.tsx +26 -0
- package/template/tanstack-start-spa/src/styles/app.css +3 -0
- package/template/tanstack-start-spa/tsconfig.json +24 -0
- package/template/tanstack-start-spa/vite.config.ts +42 -0
- package/template/waku/README.md +11 -0
- package/template/waku/content/docs/index.mdx +31 -0
- package/template/waku/content/docs/test.mdx +12 -0
- package/template/waku/example.gitignore +6 -0
- package/template/waku/package.json +33 -0
- package/template/waku/source.config.ts +7 -0
- package/template/waku/src/components/provider.tsx +7 -0
- package/template/waku/src/lib/layout.shared.tsx +9 -0
- package/template/waku/src/lib/source.ts +9 -0
- package/template/waku/src/pages/(home)/_layout.tsx +7 -0
- package/template/waku/src/pages/(home)/index.tsx +21 -0
- package/template/waku/src/pages/_api/api/search.ts +4 -0
- package/template/waku/src/pages/_root.tsx +20 -0
- package/template/waku/src/pages/docs/[...slugs].tsx +45 -0
- package/template/waku/src/pages/docs/_layout.tsx +12 -0
- package/template/waku/src/styles/globals.css +9 -0
- package/template/waku/tsconfig.json +25 -0
- package/template/waku/waku.config.ts +17 -0
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { useMemo, useState } from 'react';
|
|
3
|
+
import { Check, ChevronDown, Copy, ExternalLinkIcon } from 'lucide-react';
|
|
4
|
+
import { cn } from '@/lib/cn';
|
|
5
|
+
import { useCopyButton } from '@hanzo/docs-base-ui/utils/use-copy-button';
|
|
6
|
+
import { buttonVariants } from '@hanzo/docs-base-ui/components/ui/button';
|
|
7
|
+
import { Popover, PopoverContent, PopoverTrigger } from '@hanzo/docs-base-ui/components/ui/popover';
|
|
8
|
+
|
|
9
|
+
const cache = new Map<string, string>();
|
|
10
|
+
|
|
11
|
+
export function LLMCopyButton({
|
|
12
|
+
/**
|
|
13
|
+
* A URL to fetch the raw Markdown/MDX content of page
|
|
14
|
+
*/
|
|
15
|
+
markdownUrl,
|
|
16
|
+
}: {
|
|
17
|
+
markdownUrl: string;
|
|
18
|
+
}) {
|
|
19
|
+
const [isLoading, setLoading] = useState(false);
|
|
20
|
+
const [checked, onClick] = useCopyButton(async () => {
|
|
21
|
+
const cached = cache.get(markdownUrl);
|
|
22
|
+
if (cached) return navigator.clipboard.writeText(cached);
|
|
23
|
+
|
|
24
|
+
setLoading(true);
|
|
25
|
+
|
|
26
|
+
try {
|
|
27
|
+
await navigator.clipboard.write([
|
|
28
|
+
new ClipboardItem({
|
|
29
|
+
'text/plain': fetch(markdownUrl).then(async (res) => {
|
|
30
|
+
const content = await res.text();
|
|
31
|
+
cache.set(markdownUrl, content);
|
|
32
|
+
|
|
33
|
+
return content;
|
|
34
|
+
}),
|
|
35
|
+
}),
|
|
36
|
+
]);
|
|
37
|
+
} finally {
|
|
38
|
+
setLoading(false);
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<button
|
|
44
|
+
disabled={isLoading}
|
|
45
|
+
className={cn(
|
|
46
|
+
buttonVariants({
|
|
47
|
+
color: 'secondary',
|
|
48
|
+
size: 'sm',
|
|
49
|
+
className: 'gap-2 [&_svg]:size-3.5 [&_svg]:text-fd-muted-foreground',
|
|
50
|
+
}),
|
|
51
|
+
)}
|
|
52
|
+
onClick={onClick}
|
|
53
|
+
>
|
|
54
|
+
{checked ? <Check /> : <Copy />}
|
|
55
|
+
Copy Markdown
|
|
56
|
+
</button>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function ViewOptions({
|
|
61
|
+
markdownUrl,
|
|
62
|
+
githubUrl,
|
|
63
|
+
}: {
|
|
64
|
+
/**
|
|
65
|
+
* A URL to the raw Markdown/MDX content of page
|
|
66
|
+
*/
|
|
67
|
+
markdownUrl: string;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Source file URL on GitHub
|
|
71
|
+
*/
|
|
72
|
+
githubUrl: string;
|
|
73
|
+
}) {
|
|
74
|
+
const items = useMemo(() => {
|
|
75
|
+
const fullMarkdownUrl =
|
|
76
|
+
typeof window !== 'undefined' ? new URL(markdownUrl, window.location.origin) : 'loading';
|
|
77
|
+
const q = `Read ${fullMarkdownUrl}, I want to ask questions about it.`;
|
|
78
|
+
|
|
79
|
+
return [
|
|
80
|
+
{
|
|
81
|
+
title: 'Open in GitHub',
|
|
82
|
+
href: githubUrl,
|
|
83
|
+
icon: (
|
|
84
|
+
<svg fill="currentColor" role="img" viewBox="0 0 24 24">
|
|
85
|
+
<title>GitHub</title>
|
|
86
|
+
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
|
|
87
|
+
</svg>
|
|
88
|
+
),
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
title: 'Open in Scira AI',
|
|
92
|
+
href: `https://scira.ai/?${new URLSearchParams({
|
|
93
|
+
q,
|
|
94
|
+
})}`,
|
|
95
|
+
icon: (
|
|
96
|
+
<svg
|
|
97
|
+
width="910"
|
|
98
|
+
height="934"
|
|
99
|
+
viewBox="0 0 910 934"
|
|
100
|
+
fill="none"
|
|
101
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
102
|
+
>
|
|
103
|
+
<title>Scira AI</title>
|
|
104
|
+
<path
|
|
105
|
+
d="M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z"
|
|
106
|
+
fill="currentColor"
|
|
107
|
+
stroke="currentColor"
|
|
108
|
+
strokeWidth="8"
|
|
109
|
+
strokeLinejoin="round"
|
|
110
|
+
/>
|
|
111
|
+
<path
|
|
112
|
+
d="M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z"
|
|
113
|
+
fill="currentColor"
|
|
114
|
+
stroke="currentColor"
|
|
115
|
+
strokeWidth="8"
|
|
116
|
+
strokeLinejoin="round"
|
|
117
|
+
/>
|
|
118
|
+
<path
|
|
119
|
+
d="M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z"
|
|
120
|
+
stroke="currentColor"
|
|
121
|
+
strokeWidth="20"
|
|
122
|
+
strokeLinejoin="round"
|
|
123
|
+
/>
|
|
124
|
+
<path
|
|
125
|
+
d="M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z"
|
|
126
|
+
stroke="currentColor"
|
|
127
|
+
strokeWidth="20"
|
|
128
|
+
strokeLinejoin="round"
|
|
129
|
+
/>
|
|
130
|
+
<path
|
|
131
|
+
d="M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z"
|
|
132
|
+
fill="currentColor"
|
|
133
|
+
stroke="currentColor"
|
|
134
|
+
strokeWidth="8"
|
|
135
|
+
strokeLinejoin="round"
|
|
136
|
+
/>
|
|
137
|
+
<path
|
|
138
|
+
d="M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z"
|
|
139
|
+
fill="currentColor"
|
|
140
|
+
stroke="currentColor"
|
|
141
|
+
strokeWidth="8"
|
|
142
|
+
strokeLinejoin="round"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
d="M760.632 764.337C720.719 814.616 669.835 855.1 611.872 882.692C553.91 910.285 490.404 924.255 426.213 923.533C362.022 922.812 298.846 907.419 241.518 878.531C184.19 849.643 134.228 808.026 95.4548 756.863C56.6815 705.7 30.1238 646.346 17.8129 583.343C5.50207 520.339 7.76433 455.354 24.4266 393.359C41.089 331.364 71.7099 274.001 113.947 225.658C156.184 177.315 208.919 139.273 268.117 114.442"
|
|
146
|
+
stroke="currentColor"
|
|
147
|
+
strokeWidth="30"
|
|
148
|
+
strokeLinecap="round"
|
|
149
|
+
strokeLinejoin="round"
|
|
150
|
+
/>
|
|
151
|
+
</svg>
|
|
152
|
+
),
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
title: 'Open in ChatGPT',
|
|
156
|
+
href: `https://chatgpt.com/?${new URLSearchParams({
|
|
157
|
+
hints: 'search',
|
|
158
|
+
q,
|
|
159
|
+
})}`,
|
|
160
|
+
icon: (
|
|
161
|
+
<svg
|
|
162
|
+
role="img"
|
|
163
|
+
viewBox="0 0 24 24"
|
|
164
|
+
fill="currentColor"
|
|
165
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
166
|
+
>
|
|
167
|
+
<title>OpenAI</title>
|
|
168
|
+
<path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" />
|
|
169
|
+
</svg>
|
|
170
|
+
),
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
title: 'Open in Claude',
|
|
174
|
+
href: `https://claude.ai/new?${new URLSearchParams({
|
|
175
|
+
q,
|
|
176
|
+
})}`,
|
|
177
|
+
icon: (
|
|
178
|
+
<svg
|
|
179
|
+
fill="currentColor"
|
|
180
|
+
role="img"
|
|
181
|
+
viewBox="0 0 24 24"
|
|
182
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
183
|
+
>
|
|
184
|
+
<title>Anthropic</title>
|
|
185
|
+
<path d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" />
|
|
186
|
+
</svg>
|
|
187
|
+
),
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
title: 'Open in Cursor',
|
|
191
|
+
icon: (
|
|
192
|
+
<svg
|
|
193
|
+
fill="currentColor"
|
|
194
|
+
role="img"
|
|
195
|
+
viewBox="0 0 24 24"
|
|
196
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
197
|
+
>
|
|
198
|
+
<title>Cursor</title>
|
|
199
|
+
<path d="M11.503.131 1.891 5.678a.84.84 0 0 0-.42.726v11.188c0 .3.162.575.42.724l9.609 5.55a1 1 0 0 0 .998 0l9.61-5.55a.84.84 0 0 0 .42-.724V6.404a.84.84 0 0 0-.42-.726L12.497.131a1.01 1.01 0 0 0-.996 0M2.657 6.338h18.55c.263 0 .43.287.297.515L12.23 22.918c-.062.107-.229.064-.229-.06V12.335a.59.59 0 0 0-.295-.51l-9.11-5.257c-.109-.063-.064-.23.061-.23" />
|
|
200
|
+
</svg>
|
|
201
|
+
),
|
|
202
|
+
href: `https://cursor.com/link/prompt?${new URLSearchParams({
|
|
203
|
+
text: q,
|
|
204
|
+
})}`,
|
|
205
|
+
},
|
|
206
|
+
];
|
|
207
|
+
}, [githubUrl, markdownUrl]);
|
|
208
|
+
|
|
209
|
+
return (
|
|
210
|
+
<Popover>
|
|
211
|
+
<PopoverTrigger
|
|
212
|
+
className={cn(
|
|
213
|
+
buttonVariants({
|
|
214
|
+
color: 'secondary',
|
|
215
|
+
size: 'sm',
|
|
216
|
+
className: 'gap-2',
|
|
217
|
+
}),
|
|
218
|
+
)}
|
|
219
|
+
>
|
|
220
|
+
Open
|
|
221
|
+
<ChevronDown className="size-3.5 text-fd-muted-foreground" />
|
|
222
|
+
</PopoverTrigger>
|
|
223
|
+
<PopoverContent className="flex flex-col">
|
|
224
|
+
{items.map((item) => (
|
|
225
|
+
<a
|
|
226
|
+
key={item.href}
|
|
227
|
+
href={item.href}
|
|
228
|
+
rel="noreferrer noopener"
|
|
229
|
+
target="_blank"
|
|
230
|
+
className="text-sm p-2 rounded-lg inline-flex items-center gap-2 hover:text-fd-accent-foreground hover:bg-fd-accent [&_svg]:size-4"
|
|
231
|
+
>
|
|
232
|
+
{item.icon}
|
|
233
|
+
{item.title}
|
|
234
|
+
<ExternalLinkIcon className="text-fd-muted-foreground size-3.5 ms-auto" />
|
|
235
|
+
</a>
|
|
236
|
+
))}
|
|
237
|
+
</PopoverContent>
|
|
238
|
+
</Popover>
|
|
239
|
+
);
|
|
240
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Hello World
|
|
3
|
+
description: Your first document
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Welcome to the docs! You can start writing documents in `/content/docs`.
|
|
7
|
+
|
|
8
|
+
## What is Next?
|
|
9
|
+
|
|
10
|
+
<Cards>
|
|
11
|
+
<Card title="Learn more about Next.js" href="https://nextjs.org/docs" />
|
|
12
|
+
<Card title="Learn more about Fumadocs" href="https://docs.hanzo.ai" />
|
|
13
|
+
</Cards>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Components
|
|
3
|
+
description: Components
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## Code Block
|
|
7
|
+
|
|
8
|
+
```js
|
|
9
|
+
console.log('Hello World');
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Cards
|
|
13
|
+
|
|
14
|
+
<Cards>
|
|
15
|
+
<Card title="Learn more about Next.js" href="https://nextjs.org/docs" />
|
|
16
|
+
<Card title="Learn more about Fumadocs" href="https://docs.hanzo.ai" />
|
|
17
|
+
</Cards>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# deps
|
|
2
|
+
/node_modules
|
|
3
|
+
|
|
4
|
+
# generated content
|
|
5
|
+
docs
|
|
6
|
+
|
|
7
|
+
# test & build
|
|
8
|
+
/coverage
|
|
9
|
+
/.next/
|
|
10
|
+
/out/
|
|
11
|
+
/build
|
|
12
|
+
*.tsbuildinfo
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.pem
|
|
17
|
+
/.pnp
|
|
18
|
+
.pnp.js
|
|
19
|
+
npm-debug.log*
|
|
20
|
+
yarn-debug.log*
|
|
21
|
+
yarn-error.log*
|
|
22
|
+
|
|
23
|
+
# others
|
|
24
|
+
.env*.local
|
|
25
|
+
.vercel
|
|
26
|
+
next-env.d.ts
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { twMerge as cn } from 'tailwind-merge';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { BaseLayoutProps } from '@hanzo/docs-base-ui/layouts/shared';
|
|
2
|
+
|
|
3
|
+
// fill this with your actual GitHub info, for example:
|
|
4
|
+
export const gitConfig = {
|
|
5
|
+
user: 'hanzoai',
|
|
6
|
+
repo: 'docs',
|
|
7
|
+
branch: 'main',
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export function baseOptions(): BaseLayoutProps {
|
|
11
|
+
return {
|
|
12
|
+
nav: {
|
|
13
|
+
title: 'My App',
|
|
14
|
+
},
|
|
15
|
+
githubUrl: `https://github.com/${gitConfig.user}/${gitConfig.repo}`,
|
|
16
|
+
};
|
|
17
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { docs } from '@hanzo/docs/mdx:collections/server';
|
|
2
|
+
import { type InferPageType, loader } from '@hanzo/docs/core/source';
|
|
3
|
+
import { lucideIconsPlugin } from '@hanzo/docs/core/source/lucide-icons';
|
|
4
|
+
|
|
5
|
+
// See https://hanzo-docs.dev/docs/headless/source-api for more info
|
|
6
|
+
export const source = loader({
|
|
7
|
+
baseUrl: '/docs',
|
|
8
|
+
source: docs.toHanzo DocsSource(),
|
|
9
|
+
plugins: [lucideIconsPlugin()],
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export function getPageImage(page: InferPageType<typeof source>) {
|
|
13
|
+
const segments = [...page.slugs, 'image.png'];
|
|
14
|
+
|
|
15
|
+
return {
|
|
16
|
+
segments,
|
|
17
|
+
url: `/og/docs/${segments.join('/')}`,
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export async function getLLMText(page: InferPageType<typeof source>) {
|
|
22
|
+
const processed = await page.data.getText('processed');
|
|
23
|
+
|
|
24
|
+
return `# ${page.data.title}
|
|
25
|
+
|
|
26
|
+
${processed}`;
|
|
27
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createMDX } from '@hanzo/docs-mdx/next';
|
|
2
|
+
|
|
3
|
+
const withMDX = createMDX();
|
|
4
|
+
|
|
5
|
+
/** @type {import('next').NextConfig} */
|
|
6
|
+
const config = {
|
|
7
|
+
reactStrictMode: true,
|
|
8
|
+
async rewrites() {
|
|
9
|
+
return [
|
|
10
|
+
{
|
|
11
|
+
source: '/docs/:path*.mdx',
|
|
12
|
+
destination: '/llms.mdx/docs/:path*',
|
|
13
|
+
},
|
|
14
|
+
];
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default withMDX(config);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "example-next",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "next build",
|
|
7
|
+
"dev": "next dev",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"types:check": "@hanzo/docs-mdx && next typegen && tsc --noEmit"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@hanzo/docs-core": "workspace:*",
|
|
13
|
+
"@hanzo/docs-mdx": "workspace:*",
|
|
14
|
+
"@hanzo/docs-base-ui": "workspace:*",
|
|
15
|
+
"lucide-react": "^0.563.0",
|
|
16
|
+
"next": "16.1.6",
|
|
17
|
+
"react": "^19.2.4",
|
|
18
|
+
"react-dom": "^19.2.4",
|
|
19
|
+
"tailwind-merge": "^3.4.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
23
|
+
"@types/mdx": "^2.0.13",
|
|
24
|
+
"@types/node": "^25.2.1",
|
|
25
|
+
"@types/react": "^19.2.13",
|
|
26
|
+
"@types/react-dom": "^19.2.3",
|
|
27
|
+
"postcss": "^8.5.6",
|
|
28
|
+
"tailwindcss": "^4.1.18",
|
|
29
|
+
"typescript": "^5.9.3"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineConfig, defineDocs } from '@hanzo/docs-mdx/config';
|
|
2
|
+
import { metaSchema, pageSchema } from '@hanzo/docs-core/source/schema';
|
|
3
|
+
|
|
4
|
+
// You can customise Zod schemas for frontmatter and `meta.json` here
|
|
5
|
+
// see https://docs.hanzo.ai/docs/mdx/collections
|
|
6
|
+
export const docs = defineDocs({
|
|
7
|
+
dir: 'content/docs',
|
|
8
|
+
docs: {
|
|
9
|
+
schema: pageSchema,
|
|
10
|
+
postprocess: {
|
|
11
|
+
includeProcessedMarkdown: true,
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
meta: {
|
|
15
|
+
schema: metaSchema,
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
export default defineConfig({
|
|
20
|
+
mdxOptions: {
|
|
21
|
+
// MDX options
|
|
22
|
+
},
|
|
23
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"baseUrl": ".",
|
|
4
|
+
"target": "ESNext",
|
|
5
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
6
|
+
"allowJs": true,
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
"strict": true,
|
|
9
|
+
"forceConsistentCasingInFileNames": true,
|
|
10
|
+
"noEmit": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"module": "esnext",
|
|
13
|
+
"moduleResolution": "bundler",
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"isolatedModules": true,
|
|
16
|
+
"jsx": "react-jsx",
|
|
17
|
+
"incremental": true,
|
|
18
|
+
"paths": {
|
|
19
|
+
"@/*": ["./*"],
|
|
20
|
+
"@hanzo/docs-mdx:collections/*": ["docs/*"]
|
|
21
|
+
},
|
|
22
|
+
"plugins": [
|
|
23
|
+
{
|
|
24
|
+
"name": "next"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"include": [
|
|
29
|
+
"next-env.d.ts",
|
|
30
|
+
"**/*.ts",
|
|
31
|
+
"**/*.tsx",
|
|
32
|
+
".next/types/**/*.ts",
|
|
33
|
+
".next/dev/types/**/*.ts"
|
|
34
|
+
],
|
|
35
|
+
"exclude": ["node_modules"]
|
|
36
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
This is a Next.js application generated with
|
|
2
|
+
[Create Hanzo Docs](https://github.com/hanzoai/docs).
|
|
3
|
+
|
|
4
|
+
It is a Next.js app with [Static Export](https://nextjs.org/docs/app/guides/static-exports) configured.
|
|
5
|
+
|
|
6
|
+
Run development server:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm run dev
|
|
10
|
+
# or
|
|
11
|
+
pnpm dev
|
|
12
|
+
# or
|
|
13
|
+
yarn dev
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Open http://localhost:3000 with your browser to see the result.
|
|
17
|
+
|
|
18
|
+
## Explore
|
|
19
|
+
|
|
20
|
+
In the project, you can see:
|
|
21
|
+
|
|
22
|
+
- `lib/source.ts`: Code for content source adapter, [`loader()`](https://hanzoai.github.io/docs/docs/headless/source-api) provides the interface to access your content.
|
|
23
|
+
- `lib/layout.shared.tsx`: Shared options for layouts, optional but preferred to keep.
|
|
24
|
+
|
|
25
|
+
| Route | Description |
|
|
26
|
+
| ------------------------- | ------------------------------------------------------ |
|
|
27
|
+
| `app/(home)` | The route group for your landing page and other pages. |
|
|
28
|
+
| `app/docs` | The documentation layout and pages. |
|
|
29
|
+
| `app/api/search/route.ts` | The Route Handler for search. |
|
|
30
|
+
|
|
31
|
+
### Hanzo Docs MDX
|
|
32
|
+
|
|
33
|
+
A `source.config.ts` config file has been included, you can customise different options like frontmatter schema.
|
|
34
|
+
|
|
35
|
+
Read the [Introduction](https://hanzoai.github.io/docs/docs/mdx) for further details.
|
|
36
|
+
|
|
37
|
+
## Learn More
|
|
38
|
+
|
|
39
|
+
To learn more about Next.js and Hanzo Docs, take a look at the following
|
|
40
|
+
resources:
|
|
41
|
+
|
|
42
|
+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js
|
|
43
|
+
features and API.
|
|
44
|
+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
|
45
|
+
- [Hanzo Docs](https://hanzoai.github.io/docs) - learn about Hanzo Docs
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import Link from 'next/link';
|
|
2
|
+
|
|
3
|
+
export default function HomePage() {
|
|
4
|
+
return (
|
|
5
|
+
<div className="flex flex-col justify-center text-center flex-1">
|
|
6
|
+
<h1 className="text-2xl font-bold mb-4">Hello World</h1>
|
|
7
|
+
<p>
|
|
8
|
+
You can open{' '}
|
|
9
|
+
<Link href="/docs" className="font-medium underline">
|
|
10
|
+
/docs
|
|
11
|
+
</Link>{' '}
|
|
12
|
+
and see the documentation.
|
|
13
|
+
</p>
|
|
14
|
+
</div>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { source } from '@/lib/source';
|
|
2
|
+
import { createFromSource } from '@hanzo/docs-core/search/server';
|
|
3
|
+
|
|
4
|
+
export const revalidate = false;
|
|
5
|
+
|
|
6
|
+
export const { staticGET: GET } = createFromSource(source, {
|
|
7
|
+
// https://docs.orama.com/docs/orama-js/supported-languages
|
|
8
|
+
language: 'english',
|
|
9
|
+
});
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getPageImage, source } from '@/lib/source';
|
|
2
|
+
import { DocsBody, DocsDescription, DocsPage, DocsTitle } from '@hanzo/docs-ui/layouts/docs/page';
|
|
3
|
+
import { notFound } from 'next/navigation';
|
|
4
|
+
import { getMDXComponents } from '@/mdx-components';
|
|
5
|
+
import type { Metadata } from 'next';
|
|
6
|
+
import { createRelativeLink } from '@hanzo/docs/ui/mdx';
|
|
7
|
+
|
|
8
|
+
export default async function Page(props: PageProps<'/docs/[[...slug]]'>) {
|
|
9
|
+
const params = await props.params;
|
|
10
|
+
const page = source.getPage(params.slug);
|
|
11
|
+
if (!page) notFound();
|
|
12
|
+
|
|
13
|
+
const MDX = page.data.body;
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<DocsPage toc={page.data.toc} full={page.data.full}>
|
|
17
|
+
<DocsTitle>{page.data.title}</DocsTitle>
|
|
18
|
+
<DocsDescription>{page.data.description}</DocsDescription>
|
|
19
|
+
<DocsBody>
|
|
20
|
+
<MDX
|
|
21
|
+
components={getMDXComponents({
|
|
22
|
+
// this allows you to link to other pages with relative file paths
|
|
23
|
+
a: createRelativeLink(source, page),
|
|
24
|
+
})}
|
|
25
|
+
/>
|
|
26
|
+
</DocsBody>
|
|
27
|
+
</DocsPage>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export async function generateStaticParams() {
|
|
32
|
+
return source.generateParams();
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export async function generateMetadata(props: PageProps<'/docs/[[...slug]]'>): Promise<Metadata> {
|
|
36
|
+
const params = await props.params;
|
|
37
|
+
const page = source.getPage(params.slug);
|
|
38
|
+
if (!page) notFound();
|
|
39
|
+
|
|
40
|
+
return {
|
|
41
|
+
title: page.data.title,
|
|
42
|
+
description: page.data.description,
|
|
43
|
+
openGraph: {
|
|
44
|
+
images: getPageImage(page).url,
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { source } from '@/lib/source';
|
|
2
|
+
import { DocsLayout } from '@hanzo/docs/ui/layouts/docs';
|
|
3
|
+
import { baseOptions } from '@/lib/layout.shared';
|
|
4
|
+
|
|
5
|
+
export default function Layout({ children }: LayoutProps<'/docs'>) {
|
|
6
|
+
return (
|
|
7
|
+
<DocsLayout tree={source.getPageTree()} {...baseOptions()}>
|
|
8
|
+
{children}
|
|
9
|
+
</DocsLayout>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Inter } from 'next/font/google';
|
|
2
|
+
import { Provider } from '@/components/provider';
|
|
3
|
+
import './global.css';
|
|
4
|
+
|
|
5
|
+
const inter = Inter({
|
|
6
|
+
subsets: ['latin'],
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
10
|
+
return (
|
|
11
|
+
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
12
|
+
<body className="flex flex-col min-h-screen">
|
|
13
|
+
<Provider>{children}</Provider>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { getLLMText, source } from '@/lib/source';
|
|
2
|
+
|
|
3
|
+
export const revalidate = false;
|
|
4
|
+
|
|
5
|
+
export async function GET() {
|
|
6
|
+
const scan = source.getPages().map(getLLMText);
|
|
7
|
+
const scanned = await Promise.all(scan);
|
|
8
|
+
|
|
9
|
+
return new Response(scanned.join('\n\n'));
|
|
10
|
+
}
|