1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-02 06:20:02 +09:00

fix: new domain suggestions

This commit is contained in:
uetchy 2020-04-21 16:56:55 +09:00
parent 85f19a8ac6
commit ecb0dc4243

View File

@ -21,18 +21,18 @@ const DomainCard: React.FC<{query: string}> = ({query}) => {
const names = [ const names = [
`${lowerCase}.com`, `${lowerCase}.com`,
`${lowerCase}.io`, `${lowerCase}app.com`,
`${lowerCase}.app`, `${lowerCase}.app`,
`${lowerCase}.io`,
...domainHackSuggestions, ...domainHackSuggestions,
]; ];
const moreNames = [ const moreNames = [
`${lowerCase}.org`,
`${lowerCase}.dev`, `${lowerCase}.dev`,
`${lowerCase}.org`,
`${lowerCase}.sh`, `${lowerCase}.sh`,
`${lowerCase}.pro`,
`${lowerCase}.tools`, `${lowerCase}.tools`,
`${lowerCase}.site`, `${lowerCase}.design`,
`${lowerCase}app.com`, `${lowerCase}.build`,
`get${lowerCase}.com`, `get${lowerCase}.com`,
]; ];