Skip to content

Commit 5425ee1

Browse files
authored
chore: update links to be in env variables (#24)
1 parent 4e235ed commit 5425ee1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ export const metadata: Metadata = {
2424

2525
const DOCK_ICONS = [
2626
{
27-
href: "https://request.network",
27+
href: process.env.NEXT_PUBLIC_WEBSITE_URL as string,
2828
icon: HomeIcon,
2929
label: "Request Network Website",
3030
},
3131
{
32-
href: "https://docs.request.network/building-blocks/templates",
32+
href: process.env.NEXT_PUBLIC_DOCUMENTATION_URL as string,
3333
icon: Book,
3434
label: "Documentation",
3535
},
3636
{
37-
href: "https://www.npmjs.com/package/@requestnetwork/payment-widget",
37+
href: process.env.NEXT_PUBLIC_NPM_PACKAGE_URL as string,
3838
icon: Package,
3939
label: "NPM Package",
4040
},

0 commit comments

Comments
 (0)