|
@@ -8,6 +8,35 @@ export const Homepage = () => {
|
|
|
<div className={styles.landing}>
|
|
<div className={styles.landing}>
|
|
|
<h2>Homepage Landing Page</h2>
|
|
<h2>Homepage Landing Page</h2>
|
|
|
<div className={styles.cards}>
|
|
<div className={styles.cards}>
|
|
|
|
|
+ <ProductCard
|
|
|
|
|
+ title="Pyth Core"
|
|
|
|
|
+ description="Stable, secure, and decentralized price data source for DeFi and TradFi applications."
|
|
|
|
|
+ features={[
|
|
|
|
|
+ { label: "400ms frequency", icon: <Lightning size={12.5} /> },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "100+ blockchains",
|
|
|
|
|
+ icon: <Lightning size={12.5} />,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "Confidence intervals",
|
|
|
|
|
+ icon: <Lightning size={12.5} />,
|
|
|
|
|
+ },
|
|
|
|
|
+ { label: "2500+ price feeds", icon: <Lightning size={12.5} /> },
|
|
|
|
|
+ ]}
|
|
|
|
|
+ quickLinks={[
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "Getting Started",
|
|
|
|
|
+ href: "/price-feeds/v1/getting-started",
|
|
|
|
|
+ },
|
|
|
|
|
+ { label: "API Reference", href: "/openapi/hermes" },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "Contract Addresses",
|
|
|
|
|
+ href: "/price-feeds/v1/contract-addresses",
|
|
|
|
|
+ },
|
|
|
|
|
+ ]}
|
|
|
|
|
+ buttonLabel="Get started"
|
|
|
|
|
+ buttonHref="/price-feeds/v1"
|
|
|
|
|
+ />
|
|
|
<ProductCard
|
|
<ProductCard
|
|
|
title="Pyth Pro"
|
|
title="Pyth Pro"
|
|
|
description="Subscription-based price data for institutions and advanced use cases."
|
|
description="Subscription-based price data for institutions and advanced use cases."
|
|
@@ -26,13 +55,13 @@ export const Homepage = () => {
|
|
|
quickLinks={[
|
|
quickLinks={[
|
|
|
{
|
|
{
|
|
|
label: "Get Pyth Pro Access Token",
|
|
label: "Get Pyth Pro Access Token",
|
|
|
- href: "/docs/price-feeds/v2/acquire-an-access-token",
|
|
|
|
|
|
|
+ href: "/price-feeds/v2/acquire-an-access-token",
|
|
|
},
|
|
},
|
|
|
- { label: "Browse Supported Feeds", href: "/docs/price-feeds" },
|
|
|
|
|
- { label: "Error Codes", href: "/docs/price-feeds" },
|
|
|
|
|
|
|
+ { label: "Browse Supported Feeds", href: "/price-feeds" },
|
|
|
|
|
+ { label: "Error Codes", href: "/price-feeds" },
|
|
|
]}
|
|
]}
|
|
|
buttonLabel="Get started"
|
|
buttonLabel="Get started"
|
|
|
- buttonHref="/docs/price-feeds"
|
|
|
|
|
|
|
+ buttonHref="/price-feeds"
|
|
|
/>
|
|
/>
|
|
|
<ProductCard
|
|
<ProductCard
|
|
|
title="Entropy"
|
|
title="Entropy"
|
|
@@ -45,13 +74,13 @@ export const Homepage = () => {
|
|
|
quickLinks={[
|
|
quickLinks={[
|
|
|
{
|
|
{
|
|
|
label: "Getting Started",
|
|
label: "Getting Started",
|
|
|
- href: "/docs/entropy/create-your-first-entropy-app",
|
|
|
|
|
|
|
+ href: "/entropy/create-your-first-entropy-app",
|
|
|
},
|
|
},
|
|
|
- { label: "Protocol Design", href: "/docs/entropy/protocol-design" },
|
|
|
|
|
- { label: "Examples", href: "/docs/entropy/examples" },
|
|
|
|
|
|
|
+ { label: "Protocol Design", href: "/entropy/protocol-design" },
|
|
|
|
|
+ { label: "Examples", href: "/entropy/examples" },
|
|
|
]}
|
|
]}
|
|
|
buttonLabel="Get started"
|
|
buttonLabel="Get started"
|
|
|
- buttonHref="/docs/entropy"
|
|
|
|
|
|
|
+ buttonHref="/entropy"
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|