diff --git a/app/(dashboard)/dashboard/datasets/page.tsx b/app/(dashboard)/dashboard/datasets/page.tsx
new file mode 100644
index 00000000..af01ef60
--- /dev/null
+++ b/app/(dashboard)/dashboard/datasets/page.tsx
@@ -0,0 +1,20 @@
+import { BentoGrid, BentoGridItem } from "@/components/ui/bento-grid"
+import { datasets } from "@/data/datasets"
+
+export default function DatasetsPage() {
+ return (
+
+ Curated Datasets
+
+ {datasets.map((dataset) => (
+ }
+ />
+ ))}
+
+
+ )
+}
diff --git a/app/(dashboard)/dashboard/layout.tsx b/app/(dashboard)/dashboard/layout.tsx
index e77614dd..4933bd4c 100644
--- a/app/(dashboard)/dashboard/layout.tsx
+++ b/app/(dashboard)/dashboard/layout.tsx
@@ -46,6 +46,9 @@ export default async function DashboardLayout({
Resources
+
+ Datasets
+