diff --git a/components/ProductCard.tsx b/components/ProductCard.tsx
new file mode 100644
index 00000000..a2a8f252
--- /dev/null
+++ b/components/ProductCard.tsx
@@ -0,0 +1,92 @@
+import React from "react";
+import Link from "next/link";
+
+interface ProductCardProps {
+ badge: string;
+ badgeColor?: string;
+ icon: React.ReactNode;
+ title: string;
+ description: string;
+ features: Array<{
+ icon: React.ReactNode;
+ text: string;
+ }>;
+ ctaText: string;
+ href: string;
+ className?: string;
+}
+
+export function ProductCard({
+ badge,
+ badgeColor = "bg-blue-600",
+ icon,
+ title,
+ description,
+ features,
+ ctaText,
+ href,
+ className = "",
+}: ProductCardProps) {
+ return (
+
+ {/* Header with badge and icon */}
+
+
+ {/* Title */}
+
+ {title}
+
+
+ {/* Description */}
+
+ {description}
+
+
+ {/* Features list */}
+
+ {features.map((feature, index) => (
+
+
+ {feature.icon}
+
+
+ {feature.text}
+
+
+ ))}
+
+
+ {/* Call to action button - pushed to bottom */}
+
+
+ );
+}
diff --git a/components/icons/ProductIcons.tsx b/components/icons/ProductIcons.tsx
new file mode 100644
index 00000000..f21a7221
--- /dev/null
+++ b/components/icons/ProductIcons.tsx
@@ -0,0 +1,43 @@
+import React from "react";
+import {
+ ChartBar,
+ Shield,
+ Code,
+ Lightning,
+ Globe,
+ FileText,
+ Clock,
+ ArrowsOutCardinal,
+} from "@phosphor-icons/react";
+
+export function BarChartIcon() {
+ return
+
}
+ title="Real-Time Price Feeds"
+ description="Real-time, high-fidelity market data for smart contracts."
+ features={[
+ { icon:
, text: "Real-time price feeds" },
+ { icon:
, text: "High-frequency data" },
+ { icon:
, text: "Multi-chain support" }
+ ]}
+ ctaText="Explore Price Feeds"
+ href="./price-feeds/use-real-time-data"
+ />
+
+{" "}
+
+
}
+ title="Historical Data"
+ description="Access to historical price data for settlement and backtesting."
+ features={[
+ { icon:
, text: "Signed data" },
+ { icon:
, text: "Verifiable prices" },
+ { icon:
, text: "Time-stamped prices" },
+ ]}
+ ctaText="Access Historical Data"
+ href="./price-feeds/use-historic-price-data"
+/>
+
+
}
+ title="Lazer"
+ description="High-performance, low-latency price feeds for institutional applications."
+ features={[
+ { icon:
, text: "Ultra-low latency" },
+ { icon:
, text: "Institutional grade" },
+ { icon:
, text: "High-frequency data" }
+ ]}
+ ctaText="Learn About Lazer"
+ href="../lazer"
+ />
+
+
+## Quick Start
+
+Follow the [Getting Started](price-feeds/getting-started.mdx) guide to integrate Pyth Price Feeds into your application.
+
+For contract addresses and deployment details, see [Contract Addresses](./price-feeds/contract-addresses).