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 8721b0e commit 8854137Copy full SHA for 8854137
frontend/src/components/MultiSearch.tsx
@@ -1,3 +1,4 @@
1
+import { faAlgolia } from '@fortawesome/free-brands-svg-icons'
2
import {
3
faSearch,
4
faTimes,
@@ -284,6 +285,16 @@ const MultiSearchBar: React.FC<MultiSearchBarProps> = ({
284
285
</ul>
286
</div>
287
))}
288
+ <a
289
+ aria-label="Search by Algolia (opens in a new tab)"
290
+ className="flex items-center justify-center gap-2 bg-white py-2 text-gray-500 hover:text-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:text-gray-200"
291
+ href="https://www.algolia.com"
292
+ rel="noopener noreferrer"
293
+ target="_blank"
294
+ >
295
+ <FontAwesomeIcon icon={faAlgolia} className="h-3 w-3" aria-hidden="true" />
296
+ <span className="text-xs">Search by Algolia</span>
297
+ </a>
298
299
)}
300
0 commit comments