diff --git a/images/card-bg-purple.png b/images/card-bg-purple.png
new file mode 100644
index 0000000..81a7db3
Binary files /dev/null and b/images/card-bg-purple.png differ
diff --git a/images/card-bg-yellow.png b/images/card-bg-yellow.png
new file mode 100644
index 0000000..dbfa33b
Binary files /dev/null and b/images/card-bg-yellow.png differ
diff --git a/images/checks-passed.png b/images/checks-passed.png
deleted file mode 100644
index 3303c77..0000000
Binary files a/images/checks-passed.png and /dev/null differ
diff --git a/images/hero-dark.png b/images/hero-dark.png
deleted file mode 100644
index a61cbb1..0000000
Binary files a/images/hero-dark.png and /dev/null differ
diff --git a/images/hero-light.png b/images/hero-light.png
deleted file mode 100644
index 68c712d..0000000
Binary files a/images/hero-light.png and /dev/null differ
diff --git a/index.mdx b/index.mdx
index 5ad4d0c..aefab7c 100644
--- a/index.mdx
+++ b/index.mdx
@@ -6,7 +6,7 @@ mode: "custom"
import {CardComponent} from "/snippets/card.jsx"
import { CTALink } from "/snippets/cta-link.jsx"
-
+
TigerData documentation
@@ -16,7 +16,7 @@ for your real-time analytics and AI workloads.
Get started with
Tiger Cloud>}
- icon="rocket"
+ bgImage="/images/card-bg-purple.png"
href="/cloud/tiger/get-started/get-started-with-tiger-cloud"
cta={}>
Tiger Cloud is the fastest Postgres cloud, powered by Tiger Postgres. It enhances Postgres to handle time series, events, real-time analytics, and vector search—all in a single database alongside transactional workloads.
@@ -24,7 +24,7 @@ for your real-time analytics and AI workloads.
Get started with
TimescaleDB>}
- icon="play"
+ bgImage="/images/card-bg-yellow.png"
href="/manage-data/timescaledb/get-started/get-started-with-timescaledb"
cta={}>
TimescaleDB is an open-source Postgres extension designed for running real-time analytics on time-series data. It is engineered up from Postgres and maintains full SQL support.
diff --git a/snippets/card.jsx b/snippets/card.jsx
index acf1548..5918d2c 100644
--- a/snippets/card.jsx
+++ b/snippets/card.jsx
@@ -1,11 +1,9 @@
-export const CardComponent = ({children, icon, title, href, cta}) => {
+export const CardComponent = ({children, title, href, cta, bgImage}) => {
return (
-
-
-
-
+
{title}
{children}
{cta && {cta}
}