Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit b2afeee

Browse files
committed
fix
1 parent ca3f35d commit b2afeee

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

components/icons/ProductIcons.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
Key,
1414
Play,
1515
BookOpen,
16+
MoneyWavy,
1617
} from "@phosphor-icons/react";
1718

1819
export function BarChartIcon() {
@@ -66,3 +67,7 @@ export function PlayIcon() {
6667
export function BookIcon() {
6768
return <BookOpen className="w-5 h-5" weight="regular" />;
6869
}
70+
71+
export function MoneyWavyIcon() {
72+
return <MoneyWavy className="w-5 h-5" weight="regular" />;
73+
}

next.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ const permanentRedirectArray = [
126126
["/lazer/:path*", "/price-feeds/pro/:path*"],
127127

128128
// Price Feeds to Core Redirects
129-
["/price-feeds", "/price-feeds/core"],
130-
["/price-feeds/:path*", "/price-feeds/core/:path*"],
129+
// ["/price-feeds", "/price-feeds/core"],
130+
// ["/price-feeds/:path*", "/price-feeds/core/:path*"],
131131
];
132132

133133
/** @type {import('next').NextConfig} */

pages/price-feeds/index.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
ListIcon,
1010
KeyIcon,
1111
PlayIcon,
12+
MoneyWavyIcon,
1213
} from "../../components/icons/ProductIcons";
1314

1415
# Price Feeds
@@ -34,8 +35,8 @@ Pyth offers two main versions of price feeds, each optimized for different use c
3435
]}
3536
quickActions={[
3637
{ icon: <ListIcon />, title: "Available Feeds", href: "./price-feeds/pro/price-feed-ids" },
37-
{ icon: <KeyIcon />, title: "Get API Token", href: "./price-feeds/pro/getting-started" },
38-
{ icon: <PlayIcon />, title: "Quick Start", href: "./price-feeds/pro/getting-started" }
38+
{ icon: <KeyIcon />, title: "Get the access token", href: "https://tally.so/r/nP2lG5" },
39+
{ icon: <MoneyWavyIcon />, title: "Pricing", href: "./price-feeds/pro/pricing" },
3940
]}
4041
ctaText="Explore Pro Documentation"
4142
href="./price-feeds/pro"

0 commit comments

Comments
 (0)