We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e235ed commit 5425ee1Copy full SHA for 5425ee1
src/app/layout.tsx
@@ -24,17 +24,17 @@ export const metadata: Metadata = {
24
25
const DOCK_ICONS = [
26
{
27
- href: "https://request.network",
+ href: process.env.NEXT_PUBLIC_WEBSITE_URL as string,
28
icon: HomeIcon,
29
label: "Request Network Website",
30
},
31
32
- href: "https://docs.request.network/building-blocks/templates",
+ href: process.env.NEXT_PUBLIC_DOCUMENTATION_URL as string,
33
icon: Book,
34
label: "Documentation",
35
36
37
- href: "https://www.npmjs.com/package/@requestnetwork/payment-widget",
+ href: process.env.NEXT_PUBLIC_NPM_PACKAGE_URL as string,
38
icon: Package,
39
label: "NPM Package",
40
0 commit comments