diff --git a/public/images/demos/Demos thumbnails 1.png b/public/images/demos/Demos thumbnails 1.png
new file mode 100644
index 00000000000..ac2841680bd
Binary files /dev/null and b/public/images/demos/Demos thumbnails 1.png differ
diff --git a/public/images/demos/Demos thumbnails 2.png b/public/images/demos/Demos thumbnails 2.png
new file mode 100644
index 00000000000..a5b86705672
Binary files /dev/null and b/public/images/demos/Demos thumbnails 2.png differ
diff --git a/public/images/demos/Demos thumbnails 3.png b/public/images/demos/Demos thumbnails 3.png
new file mode 100644
index 00000000000..ab5a48f2b63
Binary files /dev/null and b/public/images/demos/Demos thumbnails 3.png differ
diff --git a/public/images/demos/Demos thumbnails 4.png b/public/images/demos/Demos thumbnails 4.png
new file mode 100644
index 00000000000..da2a2a0a583
Binary files /dev/null and b/public/images/demos/Demos thumbnails 4.png differ
diff --git a/src/components/Demos.astro b/src/components/Demos.astro
new file mode 100644
index 00000000000..0cf482cfe2e
--- /dev/null
+++ b/src/components/Demos.astro
@@ -0,0 +1,90 @@
+---
+import { Tag, Typography } from "@chainlink/blocks"
+import styles from "./Demos.module.css"
+
+export interface Demo {
+ image: string
+ title: string
+ description: string
+ tags: string[]
+ href: string
+}
+
+const demos: Demo[] = [
+ {
+ image: "/images/demos/Demos thumbnails 1.png",
+ title: "Custom Data Feed",
+ description:
+ "See how you can bring your financial data onchain in a variety of different ways by creating a Net Asset Value feed, Proof of Reserve feed, or other custom data feed.",
+ tags: ["CRE", "DATA FEEDS"],
+ href: "/",
+ },
+ {
+ image: "/images/demos/Demos thumbnails 2.png",
+ title: "Delivery vs. Payment (DvP)",
+ description:
+ "Learn how to sell a variety of assets via a Delivery vs. Payment transaction using the Chainlink Runtime Environment (CRE).",
+ tags: ["CRE"],
+ href: "/",
+ },
+ {
+ image: "/images/demos/Demos thumbnails 3.png",
+ title: "Digital Transfer Agent (DTA)",
+ description:
+ "Learn how to invest in a variety of funds via a Digital Transfer Agent (DTA) transaction using the Chainlink Runtime Environment (CRE).",
+ tags: ["CRE"],
+ href: "/",
+ },
+ {
+ image: "/images/demos/Demos thumbnails 4.png",
+ title: "Explore Chainlink",
+ description: "Explore how the Chainlink standard powers tokenization and onchain finance through",
+ tags: ["CRE", "CCIP", "DATA FEEDS"],
+ href: "/",
+ },
+]
+---
+
+
+