-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.jsx
More file actions
68 lines (68 loc) · 2.4 KB
/
theme.config.jsx
File metadata and controls
68 lines (68 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
export default {
logo: (
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
<span style={{ fontWeight: 800, letterSpacing: "-0.5px" }}>PAYNODE</span>
<span style={{ opacity: 0.5 }}>DOCS</span>
</div>
),
project: {
link: "https://github.com/PayNodeLabs"
},
docsRepositoryBase: "https://github.com/PayNodeLabs/paynode-docs/blob/main",
footer: {
text: (
<span>
MIT {new Date().getFullYear()} ©{" "}
<a href="https://paynode.dev" target="_blank">
PayNode Protocol
</a>
</span>
)
},
sidebar: {
defaultMenuCollapseLevel: 1
},
useNextSeoProps() {
return {
titleTemplate: "%s – PayNode Docs"
};
},
head: (
<>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="PayNode Documentation" />
<meta property="og:description" content="The official developer guide for the x402 Agentic Payment Protocol and PayNode integration." />
<meta name="keywords" content="PayNode developer docs, x402 protocol, agentic payments SDK, AI agent integration, Base L2, USDC payments, HTTP 402 guide" />
<link rel="canonical" href="https://docs.paynode.dev" />
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "TechArticle",
"headline": "PayNode Documentation",
"description": "The official developer guide for the x402 Agentic Payment Protocol.",
"url": "https://docs.paynode.dev"
})
}}
/>
{/* Google tag (gtag.js) */}
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GC80PJYDL1" />
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GC80PJYDL1');
`,
}}
/>
</>
)
};