import Link from "next/link"; import type { ElementType, SVGProps } from "react"; import Benchmarks from "./benchmarks.svg"; import Entropy from "./entropy.svg"; import PriceFeeds from "./price-feeds.svg"; import { Button } from "../Button"; import { MaxWidth } from "../MaxWidth"; export const Home = () => (

Pyth Network API Reference

); type ProductLinkProps = { name: string; href: string; target?: "_blank" | "_self"; children: string; icon: ElementType>; }; const ProductLink = ({ name, children, href, target, icon: Icon, }: ProductLinkProps) => ( );