Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ const permanentRedirectArray = [
"/price-feeds/use-real-time-data/:path((?!pull-integration(?:/|$)).*)",
"/price-feeds/use-real-time-data/pull-integration/:path",
],
// generic price feeds redirects
[
"/price-feeds/:path((?!core|pro|push-feeds|use-real-time-data).*?)",
"/price-feeds/core/:path*",
],
// // generic price feeds redirects
// [
// "/price-feeds/:path((?!core|pro|push-feeds|use-real-time-data).*?)",
// "/price-feeds/core/:path*",
// ],

["/benchmarks", "/price-feeds/use-historic-price-data"],
[
Expand Down
18 changes: 9 additions & 9 deletions pages/price-feeds/core/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Data is sourced from 120+ first-party providers including major exchanges and ma

<div className="flex">
<a
href="./price-feeds/core/use-real-time-data"
href="./core/use-real-time-data"
className="inline-flex items-center gap-2 bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 px-4 py-2.5 rounded-md hover:bg-gray-100 dark:hover:bg-gray-600 transition-colors text-sm font-semibold"
>
Explore Price Feeds
Expand All @@ -102,7 +102,7 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
</p>
<div className="ml-5">
<a
href="./price-feeds/core/use-real-time-data"
href="./core/use-real-time-data"
className="inline-flex items-center gap-2 bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-md transition-colors text-sm font-medium"
>
Get Started with Pull Integration
Expand All @@ -124,7 +124,7 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
</p>
<div className="ml-5">
<a
href="./price-feeds/core/push-feeds"
href="./core/push-feeds"
className="inline-flex items-center gap-2 bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition-colors text-sm font-medium"
>
Get Started with Push Integration
Expand Down Expand Up @@ -154,7 +154,7 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
{ icon: <ClockIcon />, text: "Time-stamped prices" },
]}
ctaText="Access Historical Data"
href="./price-feeds/core/use-historic-price-data"
href="./core/use-historic-price-data"
/>

</div>
Expand All @@ -165,26 +165,26 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
<Card
icon={<ClockIcon />}
title="Getting Started"
href="./price-feeds/core/getting-started"
href="./core/getting-started"
/>
<Card
icon={<ContractIcon />}
title="Contract Addresses"
href="./price-feeds/core/contract-addresses"
href="./core/contract-addresses"
/>
<Card
icon={<LightningIcon />}
title="Push Feeds"
href="./price-feeds/core/push-feeds"
href="./core/push-feeds"
/>
<Card
icon={<CodeIcon />}
title="API Reference"
href="./price-feeds/core/api-reference"
href="./core/api-reference"
/>
<Card
icon={<SearchIcon />}
title="Price Feed IDs"
href="./price-feeds/core/price-feeds"
href="./core/price-feeds"
/>
</Cards>
4 changes: 2 additions & 2 deletions pages/price-feeds/pro/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ The service is delivered through standard APIs for seamless integration.
<Card
icon={<KeyIcon />}
title="Get your access token"
href="./acquire-access-token"
href="./pro/acquire-access-token"
/>
<Card
icon={<LightningIcon />}
title="Subscribe to prices"
href="./subscribe-price-updates"
href="./pro/subscribe-price-updates"
/>
<Card
icon={<BarChartIcon />}
Expand Down
Loading