diff --git a/src/components/Dashboard/DashboardBookmarkCard.tsx b/src/components/Dashboard/DashboardBookmarkCard.tsx
index 3a7bafbb9..10bd984b6 100644
--- a/src/components/Dashboard/DashboardBookmarkCard.tsx
+++ b/src/components/Dashboard/DashboardBookmarkCard.tsx
@@ -27,9 +27,9 @@ export function DashboardBookmarkCard(props: DashboardBookmarkCardProps) {
- {resourceTitle}
);
diff --git a/src/components/Dashboard/EmptyStackMessage.tsx b/src/components/Dashboard/EmptyStackMessage.tsx
new file mode 100644
index 000000000..c0fc65567
--- /dev/null
+++ b/src/components/Dashboard/EmptyStackMessage.tsx
@@ -0,0 +1,32 @@
+type EmptyStackMessageProps = {
+ number: number;
+ title: string;
+ description: string;
+ buttonText: string;
+ buttonLink: string;
+};
+
+export function EmptyStackMessage(props: EmptyStackMessageProps) {
+ const { number, title, description, buttonText, buttonLink } = props;
+
+ return (
+