Merge pull request #841 from JacksonBarker/main
Added Brave search provider
This commit is contained in:
commit
c7e4a52b99
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
import { useState } from "react";
|
||||
import { useTranslation } from "next-i18next";
|
||||
import { FiSearch } from "react-icons/fi";
|
||||
import { SiDuckduckgo, SiMicrosoftbing, SiGoogle, SiBaidu } from "react-icons/si";
|
||||
import { SiDuckduckgo, SiMicrosoftbing, SiGoogle, SiBaidu, SiBrave } from "react-icons/si";
|
||||
|
||||
const providers = {
|
||||
google: {
|
||||
|
@ -24,6 +24,11 @@ const providers = {
|
|||
url: "https://www.baidu.com/s?wd=",
|
||||
icon: SiBaidu,
|
||||
},
|
||||
brave: {
|
||||
name: "Brave",
|
||||
url: "https://search.brave.com/search?q=",
|
||||
icon: SiBrave,
|
||||
},
|
||||
custom: {
|
||||
name: "Custom",
|
||||
url: false,
|
||||
|
|
Loading…
Add table
Reference in a new issue