Skip to content

Commit 967e96c

Browse files
committed
docs: update search to prioritize missing search queries with known values
1 parent e756437 commit 967e96c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

apps/docs/src/components/WebsiteSearch/NotYetSearched.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import BugReportIcon from "@react-md/material-icons/BugReportIcon";
55
import ColorLensIcon from "@react-md/material-icons/ColorLensIcon";
66
import DownloadIcon from "@react-md/material-icons/DownloadIcon";
77
import EditDocumentIcon from "@react-md/material-icons/EditDocumentIcon";
8+
import GridOnIcon from "@react-md/material-icons/GridOnIcon";
9+
import InterestsIcon from "@react-md/material-icons/InterestsIcon";
810
import LaunchIcon from "@react-md/material-icons/LaunchIcon";
911
import { type ReactElement, type ReactNode } from "react";
1012

@@ -17,6 +19,16 @@ interface LinkConfig {
1719
}
1820

1921
const RECOMMENDATIONS: readonly LinkConfig[] = [
22+
{
23+
href: "/components/material-icons-and-symbols",
24+
leftAddon: <InterestsIcon />,
25+
children: "Material Icons and Symbols",
26+
},
27+
{
28+
href: "/components/box",
29+
leftAddon: <GridOnIcon />,
30+
children: "Grid and Box Component",
31+
},
2032
{
2133
href: "/getting-started/installation",
2234
leftAddon: <DownloadIcon />,

0 commit comments

Comments
 (0)