diff --git a/components/base/CarouselCardList.vue b/components/base/CarouselCardList.vue
index 54519ce6d4..f142c992f1 100644
--- a/components/base/CarouselCardList.vue
+++ b/components/base/CarouselCardList.vue
@@ -28,7 +28,7 @@
+
diff --git a/components/rmrk/Gallery/PopularCollections.vue b/components/rmrk/Gallery/PopularCollections.vue
new file mode 100644
index 0000000000..c09fc2680a
--- /dev/null
+++ b/components/rmrk/Gallery/PopularCollections.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
{{ $t('Popular Collections') }}
+
+ Discover the most popular collections on rmrk
+
+
+
+
+
+
+
+
+
+
diff --git a/queries/rmrk/subsquid/popularCollectionList.graphql b/queries/rmrk/subsquid/popularCollectionList.graphql
new file mode 100644
index 0000000000..c45ad25899
--- /dev/null
+++ b/queries/rmrk/subsquid/popularCollectionList.graphql
@@ -0,0 +1,22 @@
+query popularCollectionList(
+ $limit: Float
+ $orderBy: String
+ $dateRange: String
+ $orderDirection: String
+) {
+ seriesInsightTable(
+ limit: $limit
+ orderBy: $orderBy
+ orderDirection: $orderDirection
+ dateRange: $dateRange
+ ) {
+ id
+ image
+ metadata
+ sold
+ name
+ issuer
+ total
+ buys
+ }
+}