diff --git a/apps/www/src/components/doc-search/command-menu.tsx b/apps/www/src/components/doc-search/command-menu.tsx
index 9c6ab229..5e53724c 100644
--- a/apps/www/src/components/doc-search/command-menu.tsx
+++ b/apps/www/src/components/doc-search/command-menu.tsx
@@ -1,5 +1,6 @@
import { Index } from 'react-instantsearch'
+import { Footer } from './footer'
import { RenderHits } from './hits'
import { SearchInput } from './input'
import { useCommandMenuContext } from './modal.context'
@@ -29,6 +30,7 @@ export function CommandMenu() {
No results found.
+
)
}
diff --git a/apps/www/src/components/doc-search/footer.tsx b/apps/www/src/components/doc-search/footer.tsx
new file mode 100644
index 00000000..a67c26fe
--- /dev/null
+++ b/apps/www/src/components/doc-search/footer.tsx
@@ -0,0 +1,167 @@
+export function Footer() {
+ return (
+
+ )
+}
+
+function EscapeKey() {
+ return (
+
+ )
+}
+
+function ArrowDownKey() {
+ return (
+
+ )
+}
+function ArrowUpKey() {
+ return (
+
+ )
+}
+
+function EnterKey() {
+ return (
+
+ )
+}
+
+function Kbd({ children }: { children: React.ReactNode }) {
+ return (
+
+ {children}
+
+ )
+}
+
+function AlgoliaLogo() {
+ return (
+
+ )
+}