We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b315ff9 commit 54b9a98Copy full SHA for 54b9a98
src/components/LearningPathCatalog.tsx
@@ -1,14 +1,15 @@
1
import { useEffect, useState, type ChangeEvent } from "react";
2
import Markdown from "react-markdown";
3
-import type { CollectionEntry } from "astro:content";
+import type { CollectionEntry, getEntries, reference } from "astro:content";
4
import type { IconifyIconBuildResult } from "@iconify/utils";
5
import { setSearchParams } from "~/util/url";
6
+import { z } from "astro:schema";
7
8
type LearningPaths = CollectionEntry<"learning-paths">["data"][];
9
type Icons = Record<string, IconifyIconBuildResult>;
10
11
type Filters = {
- products: string[];
12
+ products: string[],
13
groups: string[];
14
};
15
0 commit comments